1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Defines an alternate key. This value is optional. A legacy data set might not
// have any alternate key defined but if those alternate keys definitions exist,
// provide them, as some applications will make use of them.
type AlternateKey struct {
// A strictly positive integer value representing the length of the alternate key.
//
// This member is required.
Length int32
// A positive integer value representing the offset to mark the start of the
// alternate key part in the record byte array.
//
// This member is required.
Offset int32
// Indicates whether the alternate key values are supposed to be unique for the
// given data set.
AllowDuplicates bool
// The name of the alternate key.
Name *string
noSmithyDocumentSerde
}
// A subset of the possible application attributes. Used in the application list.
type ApplicationSummary struct {
// The Amazon Resource Name (ARN) of the application.
//
// This member is required.
ApplicationArn *string
// The unique identifier of the application.
//
// This member is required.
ApplicationId *string
// The version of the application.
//
// This member is required.
ApplicationVersion *int32
// The timestamp when the application was created.
//
// This member is required.
CreationTime *time.Time
// The type of the target platform for this application.
//
// This member is required.
EngineType EngineType
// The name of the application.
//
// This member is required.
Name *string
// The status of the application.
//
// This member is required.
Status ApplicationLifecycle
// Indicates either an ongoing deployment or if the application has ever deployed
// successfully.
DeploymentStatus ApplicationDeploymentLifecycle
// The description of the application.
Description *string
// The unique identifier of the runtime environment that hosts this application.
EnvironmentId *string
// The timestamp when you last started the application. Null until the application
// runs for the first time.
LastStartTime *time.Time
// The Amazon Resource Name (ARN) of the role associated with the application.
RoleArn *string
// Indicates the status of the latest version of the application.
VersionStatus ApplicationVersionLifecycle
noSmithyDocumentSerde
}
// Defines an application version summary.
type ApplicationVersionSummary struct {
// The application version.
//
// This member is required.
ApplicationVersion *int32
// The timestamp when the application version was created.
//
// This member is required.
CreationTime *time.Time
// The status of the application.
//
// This member is required.
Status ApplicationVersionLifecycle
// The reason for the reported status.
StatusReason *string
noSmithyDocumentSerde
}
// Defines the details of a batch job.
//
// The following types satisfy this interface:
//
// BatchJobDefinitionMemberFileBatchJobDefinition
// BatchJobDefinitionMemberScriptBatchJobDefinition
type BatchJobDefinition interface {
isBatchJobDefinition()
}
// Specifies a file containing a batch job definition.
type BatchJobDefinitionMemberFileBatchJobDefinition struct {
Value FileBatchJobDefinition
noSmithyDocumentSerde
}
func (*BatchJobDefinitionMemberFileBatchJobDefinition) isBatchJobDefinition() {}
// A script containing a batch job definition.
type BatchJobDefinitionMemberScriptBatchJobDefinition struct {
Value ScriptBatchJobDefinition
noSmithyDocumentSerde
}
func (*BatchJobDefinitionMemberScriptBatchJobDefinition) isBatchJobDefinition() {}
// A subset of the possible batch job attributes. Used in the batch job list.
type BatchJobExecutionSummary struct {
// The unique identifier of the application that hosts this batch job.
//
// This member is required.
ApplicationId *string
// The unique identifier of this execution of the batch job.
//
// This member is required.
ExecutionId *string
// The timestamp when a particular batch job execution started.
//
// This member is required.
StartTime *time.Time
// The status of a particular batch job execution.
//
// This member is required.
Status BatchJobExecutionStatus
// The unique identifier of this batch job.
BatchJobIdentifier BatchJobIdentifier
// The timestamp when this batch job execution ended.
EndTime *time.Time
// The unique identifier of a particular batch job.
JobId *string
// The name of a particular batch job.
JobName *string
// The type of a particular batch job execution.
JobType BatchJobType
// The batch job return code from either the Blu Age or Micro Focus runtime
// engines. For more information, see Batch return codes (https://www.ibm.com/docs/en/was/8.5.5?topic=model-batch-return-codes)
// in the IBM WebSphere Application Server documentation.
ReturnCode *string
noSmithyDocumentSerde
}
// Identifies a specific batch job.
//
// The following types satisfy this interface:
//
// BatchJobIdentifierMemberFileBatchJobIdentifier
// BatchJobIdentifierMemberS3BatchJobIdentifier
// BatchJobIdentifierMemberScriptBatchJobIdentifier
type BatchJobIdentifier interface {
isBatchJobIdentifier()
}
// Specifies a file associated with a specific batch job.
type BatchJobIdentifierMemberFileBatchJobIdentifier struct {
Value FileBatchJobIdentifier
noSmithyDocumentSerde
}
func (*BatchJobIdentifierMemberFileBatchJobIdentifier) isBatchJobIdentifier() {}
// Specifies an Amazon S3 location that identifies the batch jobs that you want to
// run. Use this identifier to run ad hoc batch jobs.
type BatchJobIdentifierMemberS3BatchJobIdentifier struct {
Value S3BatchJobIdentifier
noSmithyDocumentSerde
}
func (*BatchJobIdentifierMemberS3BatchJobIdentifier) isBatchJobIdentifier() {}
// A batch job identifier in which the batch job to run is identified by the
// script name.
type BatchJobIdentifierMemberScriptBatchJobIdentifier struct {
Value ScriptBatchJobIdentifier
noSmithyDocumentSerde
}
func (*BatchJobIdentifierMemberScriptBatchJobIdentifier) isBatchJobIdentifier() {}
// Defines a data set.
type DataSet struct {
// The logical identifier for a specific data set (in mainframe format).
//
// This member is required.
DatasetName *string
// The type of dataset. The only supported value is VSAM.
//
// This member is required.
DatasetOrg DatasetOrgAttributes
// The length of a record.
//
// This member is required.
RecordLength *RecordLength
// The relative location of the data set in the database or file system.
RelativePath *string
// The storage type of the data set: database or file system. For Micro Focus,
// database corresponds to datastore and file system corresponds to EFS/FSX. For
// Blu Age, there is no support of file system and database corresponds to Blusam.
StorageType *string
noSmithyDocumentSerde
}
// Additional details about the data set. Different attributes correspond to
// different data set organizations. The values are populated based on datasetOrg,
// storageType and backend (Blu Age or Micro Focus).
//
// The following types satisfy this interface:
//
// DatasetDetailOrgAttributesMemberGdg
// DatasetDetailOrgAttributesMemberPo
// DatasetDetailOrgAttributesMemberPs
// DatasetDetailOrgAttributesMemberVsam
type DatasetDetailOrgAttributes interface {
isDatasetDetailOrgAttributes()
}
// The generation data group of the data set.
type DatasetDetailOrgAttributesMemberGdg struct {
Value GdgDetailAttributes
noSmithyDocumentSerde
}
func (*DatasetDetailOrgAttributesMemberGdg) isDatasetDetailOrgAttributes() {}
// The details of a PO type data set.
type DatasetDetailOrgAttributesMemberPo struct {
Value PoDetailAttributes
noSmithyDocumentSerde
}
func (*DatasetDetailOrgAttributesMemberPo) isDatasetDetailOrgAttributes() {}
// The details of a PS type data set.
type DatasetDetailOrgAttributesMemberPs struct {
Value PsDetailAttributes
noSmithyDocumentSerde
}
func (*DatasetDetailOrgAttributesMemberPs) isDatasetDetailOrgAttributes() {}
// The details of a VSAM data set.
type DatasetDetailOrgAttributesMemberVsam struct {
Value VsamDetailAttributes
noSmithyDocumentSerde
}
func (*DatasetDetailOrgAttributesMemberVsam) isDatasetDetailOrgAttributes() {}
// Identifies one or more data sets you want to import with the
// CreateDataSetImportTask operation.
//
// The following types satisfy this interface:
//
// DataSetImportConfigMemberDataSets
// DataSetImportConfigMemberS3Location
type DataSetImportConfig interface {
isDataSetImportConfig()
}
// The data sets.
type DataSetImportConfigMemberDataSets struct {
Value []DataSetImportItem
noSmithyDocumentSerde
}
func (*DataSetImportConfigMemberDataSets) isDataSetImportConfig() {}
// The Amazon S3 location of the data sets.
type DataSetImportConfigMemberS3Location struct {
Value string
noSmithyDocumentSerde
}
func (*DataSetImportConfigMemberS3Location) isDataSetImportConfig() {}
// Identifies a specific data set to import from an external location.
type DataSetImportItem struct {
// The data set.
//
// This member is required.
DataSet *DataSet
// The location of the data set.
//
// This member is required.
ExternalLocation ExternalLocation
noSmithyDocumentSerde
}
// Represents a summary of data set imports.
type DataSetImportSummary struct {
// The number of data set imports that have failed.
//
// This member is required.
Failed int32
// The number of data set imports that are in progress.
//
// This member is required.
InProgress int32
// The number of data set imports that are pending.
//
// This member is required.
Pending int32
// The number of data set imports that have succeeded.
//
// This member is required.
Succeeded int32
// The total number of data set imports.
//
// This member is required.
Total int32
noSmithyDocumentSerde
}
// Contains information about a data set import task.
type DataSetImportTask struct {
// The status of the data set import task.
//
// This member is required.
Status DataSetTaskLifecycle
// A summary of the data set import task.
//
// This member is required.
Summary *DataSetImportSummary
// The identifier of the data set import task.
//
// This member is required.
TaskId *string
// If dataset import failed, the failure reason will show here.
StatusReason *string
noSmithyDocumentSerde
}
// Additional details about the data set. Different attributes correspond to
// different data set organizations. The values are populated based on datasetOrg,
// storageType and backend (Blu Age or Micro Focus).
//
// The following types satisfy this interface:
//
// DatasetOrgAttributesMemberGdg
// DatasetOrgAttributesMemberPo
// DatasetOrgAttributesMemberPs
// DatasetOrgAttributesMemberVsam
type DatasetOrgAttributes interface {
isDatasetOrgAttributes()
}
// The generation data group of the data set.
type DatasetOrgAttributesMemberGdg struct {
Value GdgAttributes
noSmithyDocumentSerde
}
func (*DatasetOrgAttributesMemberGdg) isDatasetOrgAttributes() {}
// The details of a PO type data set.
type DatasetOrgAttributesMemberPo struct {
Value PoAttributes
noSmithyDocumentSerde
}
func (*DatasetOrgAttributesMemberPo) isDatasetOrgAttributes() {}
// The details of a PS type data set.
type DatasetOrgAttributesMemberPs struct {
Value PsAttributes
noSmithyDocumentSerde
}
func (*DatasetOrgAttributesMemberPs) isDatasetOrgAttributes() {}
// The details of a VSAM data set.
type DatasetOrgAttributesMemberVsam struct {
Value VsamAttributes
noSmithyDocumentSerde
}
func (*DatasetOrgAttributesMemberVsam) isDatasetOrgAttributes() {}
// A subset of the possible data set attributes.
type DataSetSummary struct {
// The name of the data set.
//
// This member is required.
DataSetName *string
// The timestamp when the data set was created.
CreationTime *time.Time
// The type of data set. The only supported value is VSAM.
DataSetOrg *string
// The format of the data set.
Format *string
// The last time the data set was referenced.
LastReferencedTime *time.Time
// The last time the data set was updated.
LastUpdatedTime *time.Time
noSmithyDocumentSerde
}
// The application definition for a particular application.
//
// The following types satisfy this interface:
//
// DefinitionMemberContent
// DefinitionMemberS3Location
type Definition interface {
isDefinition()
}
// The content of the application definition. This is a JSON object that contains
// the resource configuration/definitions that identify an application.
type DefinitionMemberContent struct {
Value string
noSmithyDocumentSerde
}
func (*DefinitionMemberContent) isDefinition() {}
// The S3 bucket that contains the application definition.
type DefinitionMemberS3Location struct {
Value string
noSmithyDocumentSerde
}
func (*DefinitionMemberS3Location) isDefinition() {}
// Contains a summary of a deployed application.
type DeployedVersionSummary struct {
// The version of the deployed application.
//
// This member is required.
ApplicationVersion *int32
// The status of the deployment.
//
// This member is required.
Status DeploymentLifecycle
// The reason for the reported status.
StatusReason *string
noSmithyDocumentSerde
}
// A subset of information about a specific deployment.
type DeploymentSummary struct {
// The unique identifier of the application.
//
// This member is required.
ApplicationId *string
// The version of the application.
//
// This member is required.
ApplicationVersion *int32
// The timestamp when the deployment was created.
//
// This member is required.
CreationTime *time.Time
// The unique identifier of the deployment.
//
// This member is required.
DeploymentId *string
// The unique identifier of the runtime environment.
//
// This member is required.
EnvironmentId *string
// The current status of the deployment.
//
// This member is required.
Status DeploymentLifecycle
// The reason for the reported status.
StatusReason *string
noSmithyDocumentSerde
}
// Defines the storage configuration for an Amazon EFS file system.
type EfsStorageConfiguration struct {
// The file system identifier.
//
// This member is required.
FileSystemId *string
// The mount point for the file system.
//
// This member is required.
MountPoint *string
noSmithyDocumentSerde
}
// A subset of information about the engine version for a specific application.
type EngineVersionsSummary struct {
// The type of target platform for the application.
//
// This member is required.
EngineType *string
// The version of the engine type used by the application.
//
// This member is required.
EngineVersion *string
noSmithyDocumentSerde
}
// Contains a subset of the possible runtime environment attributes. Used in the
// environment list.
type EnvironmentSummary struct {
// The timestamp when the runtime environment was created.
//
// This member is required.
CreationTime *time.Time
// The target platform for the runtime environment.
//
// This member is required.
EngineType EngineType
// The version of the runtime engine.
//
// This member is required.
EngineVersion *string
// The Amazon Resource Name (ARN) of a particular runtime environment.
//
// This member is required.
EnvironmentArn *string
// The unique identifier of a particular runtime environment.
//
// This member is required.
EnvironmentId *string
// The instance type of the runtime environment.
//
// This member is required.
InstanceType *string
// The name of the runtime environment.
//
// This member is required.
Name *string
// The status of the runtime environment
//
// This member is required.
Status EnvironmentLifecycle
noSmithyDocumentSerde
}
// Defines an external storage location.
//
// The following types satisfy this interface:
//
// ExternalLocationMemberS3Location
type ExternalLocation interface {
isExternalLocation()
}
// The URI of the Amazon S3 bucket.
type ExternalLocationMemberS3Location struct {
Value string
noSmithyDocumentSerde
}
func (*ExternalLocationMemberS3Location) isExternalLocation() {}
// A file containing a batch job definition.
type FileBatchJobDefinition struct {
// The name of the file containing the batch job definition.
//
// This member is required.
FileName *string
// The path to the file containing the batch job definition.
FolderPath *string
noSmithyDocumentSerde
}
// A batch job identifier in which the batch job to run is identified by the file
// name and the relative path to the file name.
type FileBatchJobIdentifier struct {
// The file name for the batch job identifier.
//
// This member is required.
FileName *string
// The relative path to the file name for the batch job identifier.
FolderPath *string
noSmithyDocumentSerde
}
// Defines the storage configuration for an Amazon FSx file system.
type FsxStorageConfiguration struct {
// The file system identifier.
//
// This member is required.
FileSystemId *string
// The mount point for the file system.
//
// This member is required.
MountPoint *string
noSmithyDocumentSerde
}
// The required attributes for a generation data group data set. A generation data
// set is one of a collection of successive, historically related, catalogued data
// sets that together are known as a generation data group (GDG). Use this
// structure when you want to import a GDG. For more information on GDG, see
// Generation data sets (https://www.ibm.com/docs/en/zos/2.3.0?topic=guide-generation-data-sets)
// .
type GdgAttributes struct {
// The maximum number of generation data sets, up to 255, in a GDG.
Limit int32
// The disposition of the data set in the catalog.
RollDisposition *string
noSmithyDocumentSerde
}
// The required attributes for a generation data group data set. A generation data
// set is one of a collection of successive, historically related, catalogued data
// sets that together are known as a generation data group (GDG). Use this
// structure when you want to import a GDG. For more information on GDG, see
// Generation data sets (https://www.ibm.com/docs/en/zos/2.3.0?topic=guide-generation-data-sets)
// .
type GdgDetailAttributes struct {
// The maximum number of generation data sets, up to 255, in a GDG.
Limit int32
// The disposition of the data set in the catalog.
RollDisposition *string
noSmithyDocumentSerde
}
// Defines the details of a high availability configuration.
type HighAvailabilityConfig struct {
// The number of instances in a high availability configuration. The minimum
// possible value is 1 and the maximum is 100.
//
// This member is required.
DesiredCapacity *int32
noSmithyDocumentSerde
}
// Identifies a specific batch job.
//
// The following types satisfy this interface:
//
// JobIdentifierMemberFileName
// JobIdentifierMemberScriptName
type JobIdentifier interface {
isJobIdentifier()
}
// The name of the file that contains the batch job definition.
type JobIdentifierMemberFileName struct {
Value string
noSmithyDocumentSerde
}
func (*JobIdentifierMemberFileName) isJobIdentifier() {}
// The name of the script that contains the batch job definition.
type JobIdentifierMemberScriptName struct {
Value string
noSmithyDocumentSerde
}
func (*JobIdentifierMemberScriptName) isJobIdentifier() {}
// A subset of the attributes that describe a log group. In CloudWatch a log group
// is a group of log streams that share the same retention, monitoring, and access
// control settings.
type LogGroupSummary struct {
// The name of the log group.
//
// This member is required.
LogGroupName *string
// The type of log.
//
// This member is required.
LogType *string
noSmithyDocumentSerde
}
// The information about the maintenance schedule.
type MaintenanceSchedule struct {
// The time the scheduled maintenance is to end.
EndTime *time.Time
// The time the scheduled maintenance is to start.
StartTime *time.Time
noSmithyDocumentSerde
}
// The scheduled maintenance for a runtime engine.
type PendingMaintenance struct {
// The specific runtime engine that the maintenance schedule applies to.
EngineVersion *string
// The maintenance schedule for the runtime engine version.
Schedule *MaintenanceSchedule
noSmithyDocumentSerde
}
// The supported properties for a PO type data set.
type PoAttributes struct {
// The format of the data set records.
//
// This member is required.
Format *string
// An array containing one or more filename extensions, allowing you to specify
// which files to be included as PDS member.
//
// This member is required.
MemberFileExtensions []string
// The character set encoding of the data set.
Encoding *string
noSmithyDocumentSerde
}
// The supported properties for a PO type data set.
type PoDetailAttributes struct {
// The character set encoding of the data set.
//
// This member is required.
Encoding *string
// The format of the data set records.
//
// This member is required.
Format *string
noSmithyDocumentSerde
}
// The primary key for a KSDS data set.
type PrimaryKey struct {
// A strictly positive integer value representing the length of the primary key.
//
// This member is required.
Length int32
// A positive integer value representing the offset to mark the start of the
// primary key in the record byte array.
//
// This member is required.
Offset int32
// A name for the Primary Key.
Name *string
noSmithyDocumentSerde
}
// The supported properties for a PS type data set.
type PsAttributes struct {
// The format of the data set records.
//
// This member is required.
Format *string
// The character set encoding of the data set.
Encoding *string
noSmithyDocumentSerde
}
// The supported properties for a PS type data set.
type PsDetailAttributes struct {
// The character set encoding of the data set.
//
// This member is required.
Encoding *string
// The format of the data set records.
//
// This member is required.
Format *string
noSmithyDocumentSerde
}
// The length of the records in the data set.
type RecordLength struct {
// The maximum record length. In case of fixed, both minimum and maximum are the
// same.
//
// This member is required.
Max int32
// The minimum record length of a record.
//
// This member is required.
Min int32
noSmithyDocumentSerde
}
// A batch job identifier in which the batch jobs to run are identified by an
// Amazon S3 location.
type S3BatchJobIdentifier struct {
// The Amazon S3 bucket that contains the batch job definitions.
//
// This member is required.
Bucket *string
// Identifies the batch job definition. This identifier can also point to any
// batch job definition that already exists in the application or to one of the
// batch job definitions within the directory that is specified in keyPrefix .
//
// This member is required.
Identifier JobIdentifier
// The key prefix that specifies the path to the folder in the S3 bucket that has
// the batch job definitions.
KeyPrefix *string
noSmithyDocumentSerde
}
// A batch job definition contained in a script.
type ScriptBatchJobDefinition struct {
// The name of the script containing the batch job definition.
//
// This member is required.
ScriptName *string
noSmithyDocumentSerde
}
// A batch job identifier in which the batch job to run is identified by the
// script name.
type ScriptBatchJobIdentifier struct {
// The name of the script containing the batch job definition.
//
// This member is required.
ScriptName *string
noSmithyDocumentSerde
}
// Defines the storage configuration for a runtime environment.
//
// The following types satisfy this interface:
//
// StorageConfigurationMemberEfs
// StorageConfigurationMemberFsx
type StorageConfiguration interface {
isStorageConfiguration()
}
// Defines the storage configuration for an Amazon EFS file system.
type StorageConfigurationMemberEfs struct {
Value EfsStorageConfiguration
noSmithyDocumentSerde
}
func (*StorageConfigurationMemberEfs) isStorageConfiguration() {}
// Defines the storage configuration for an Amazon FSx file system.
type StorageConfigurationMemberFsx struct {
Value FsxStorageConfiguration
noSmithyDocumentSerde
}
func (*StorageConfigurationMemberFsx) isStorageConfiguration() {}
// Contains information about a validation exception field.
type ValidationExceptionField struct {
// The message of the exception field.
//
// This member is required.
Message *string
// The name of the exception field.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The attributes of a VSAM type data set.
type VsamAttributes struct {
// The record format of the data set.
//
// This member is required.
Format *string
// The alternate key definitions, if any. A legacy dataset might not have any
// alternate key defined, but if those alternate keys definitions exist, provide
// them as some applications will make use of them.
AlternateKeys []AlternateKey
// Indicates whether indexes for this dataset are stored as compressed values. If
// you have a large data set (typically > 100 Mb), consider setting this flag to
// True.
Compressed bool
// The character set used by the data set. Can be ASCII, EBCDIC, or unknown.
Encoding *string
// The primary key of the data set.
PrimaryKey *PrimaryKey
noSmithyDocumentSerde
}
// The attributes of a VSAM type data set.
type VsamDetailAttributes struct {
// The alternate key definitions, if any. A legacy dataset might not have any
// alternate key defined, but if those alternate keys definitions exist, provide
// them as some applications will make use of them.
AlternateKeys []AlternateKey
// If set to True, enforces loading the data set into cache before it’s used by
// the application.
CacheAtStartup *bool
// Indicates whether indexes for this dataset are stored as compressed values. If
// you have a large data set (typically > 100 Mb), consider setting this flag to
// True.
Compressed *bool
// The character set used by the data set. Can be ASCII, EBCDIC, or unknown.
Encoding *string
// The primary key of the data set.
PrimaryKey *PrimaryKey
// The record format of the data set.
RecordFormat *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isBatchJobDefinition() {}
func (*UnknownUnionMember) isBatchJobIdentifier() {}
func (*UnknownUnionMember) isDatasetDetailOrgAttributes() {}
func (*UnknownUnionMember) isDataSetImportConfig() {}
func (*UnknownUnionMember) isDatasetOrgAttributes() {}
func (*UnknownUnionMember) isDefinition() {}
func (*UnknownUnionMember) isExternalLocation() {}
func (*UnknownUnionMember) isJobIdentifier() {}
func (*UnknownUnionMember) isStorageConfiguration() {}
|