@aws-sdk/client-imagebuilder 3.428.0 → 3.429.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -129,7 +129,7 @@ export interface ImageState {
129
129
  * @public
130
130
  * <p>The status of the image.</p>
131
131
  */
132
- status?: ImageStatus | string;
132
+ status?: ImageStatus;
133
133
  /**
134
134
  * @public
135
135
  * <p>The reason for the status of the image.</p>
@@ -459,7 +459,7 @@ export interface ComponentState {
459
459
  * @public
460
460
  * <p>The current state of the component.</p>
461
461
  */
462
- status?: ComponentStatus | string;
462
+ status?: ComponentStatus;
463
463
  /**
464
464
  * @public
465
465
  * <p>Describes how or why the component changed state.</p>
@@ -513,12 +513,12 @@ export interface Component {
513
513
  * <p>The component type specifies whether Image Builder uses the component to build the image or
514
514
  * only to test it.</p>
515
515
  */
516
- type?: ComponentType | string;
516
+ type?: ComponentType;
517
517
  /**
518
518
  * @public
519
519
  * <p>The operating system platform of the component.</p>
520
520
  */
521
- platform?: Platform | string;
521
+ platform?: Platform;
522
522
  /**
523
523
  * @public
524
524
  * <p>The operating system (OS) version supported by the component. If the OS information is
@@ -649,7 +649,7 @@ export interface ComponentSummary {
649
649
  * @public
650
650
  * <p>The operating system platform of the component.</p>
651
651
  */
652
- platform?: Platform | string;
652
+ platform?: Platform;
653
653
  /**
654
654
  * @public
655
655
  * <p>The operating system (OS) version that the component supports. If the OS information
@@ -667,7 +667,7 @@ export interface ComponentSummary {
667
667
  * <p>The component type specifies whether Image Builder uses the component to build the image or
668
668
  * only to test it.</p>
669
669
  */
670
- type?: ComponentType | string;
670
+ type?: ComponentType;
671
671
  /**
672
672
  * @public
673
673
  * <p>The owner of the component.</p>
@@ -768,7 +768,7 @@ export interface ComponentVersion {
768
768
  * @public
769
769
  * <p>The platform of the component.</p>
770
770
  */
771
- platform?: Platform | string;
771
+ platform?: Platform;
772
772
  /**
773
773
  * @public
774
774
  * <p>he operating system (OS) version supported by the component. If the OS information is
@@ -781,7 +781,7 @@ export interface ComponentVersion {
781
781
  * <p>The type of the component denotes whether the component is used to build the image or
782
782
  * only to test it.</p>
783
783
  */
784
- type?: ComponentType | string;
784
+ type?: ComponentType;
785
785
  /**
786
786
  * @public
787
787
  * <p>The owner of the component.</p>
@@ -830,7 +830,7 @@ export interface TargetContainerRepository {
830
830
  * @public
831
831
  * <p>Specifies the service in which this image was registered.</p>
832
832
  */
833
- service: ContainerRepositoryService | string | undefined;
833
+ service: ContainerRepositoryService | undefined;
834
834
  /**
835
835
  * @public
836
836
  * <p>The name of the container repository where the output container image is stored. This
@@ -927,7 +927,7 @@ export interface EbsInstanceBlockDeviceSpecification {
927
927
  * @public
928
928
  * <p>Use to override the device's volume type.</p>
929
929
  */
930
- volumeType?: EbsVolumeType | string;
930
+ volumeType?: EbsVolumeType;
931
931
  /**
932
932
  * @public
933
933
  * <p>
@@ -1011,7 +1011,7 @@ export interface ContainerRecipe {
1011
1011
  * @public
1012
1012
  * <p>Specifies the type of container, such as Docker.</p>
1013
1013
  */
1014
- containerType?: ContainerType | string;
1014
+ containerType?: ContainerType;
1015
1015
  /**
1016
1016
  * @public
1017
1017
  * <p>The name of the container recipe.</p>
@@ -1026,7 +1026,7 @@ export interface ContainerRecipe {
1026
1026
  * @public
1027
1027
  * <p>The system platform for the container, such as Windows or Linux.</p>
1028
1028
  */
1029
- platform?: Platform | string;
1029
+ platform?: Platform;
1030
1030
  /**
1031
1031
  * @public
1032
1032
  * <p>The owner of the container recipe.</p>
@@ -1126,7 +1126,7 @@ export interface ContainerRecipeSummary {
1126
1126
  * @public
1127
1127
  * <p>Specifies the type of container, such as "Docker".</p>
1128
1128
  */
1129
- containerType?: ContainerType | string;
1129
+ containerType?: ContainerType;
1130
1130
  /**
1131
1131
  * @public
1132
1132
  * <p>The name of the container recipe.</p>
@@ -1136,7 +1136,7 @@ export interface ContainerRecipeSummary {
1136
1136
  * @public
1137
1137
  * <p>The system platform for the container, such as Windows or Linux.</p>
1138
1138
  */
1139
- platform?: Platform | string;
1139
+ platform?: Platform;
1140
1140
  /**
1141
1141
  * @public
1142
1142
  * <p>The owner of the container recipe.</p>
@@ -1201,7 +1201,7 @@ export interface CreateComponentRequest {
1201
1201
  * @public
1202
1202
  * <p>The operating system platform of the component.</p>
1203
1203
  */
1204
- platform: Platform | string | undefined;
1204
+ platform: Platform | undefined;
1205
1205
  /**
1206
1206
  * @public
1207
1207
  * <p>The operating system (OS) version supported by the component. If the OS information is
@@ -1309,7 +1309,7 @@ export interface CreateContainerRecipeRequest {
1309
1309
  * @public
1310
1310
  * <p>The type of container to create.</p>
1311
1311
  */
1312
- containerType: ContainerType | string | undefined;
1312
+ containerType: ContainerType | undefined;
1313
1313
  /**
1314
1314
  * @public
1315
1315
  * <p>The name of the container recipe.</p>
@@ -1366,7 +1366,7 @@ export interface CreateContainerRecipeRequest {
1366
1366
  * @public
1367
1367
  * <p>Specifies the operating system platform when you use a custom base image.</p>
1368
1368
  */
1369
- platformOverride?: Platform | string;
1369
+ platformOverride?: Platform;
1370
1370
  /**
1371
1371
  * @public
1372
1372
  * <p>Specifies the operating system version for the base image.</p>
@@ -1580,7 +1580,7 @@ export interface S3ExportConfiguration {
1580
1580
  * </li>
1581
1581
  * </ul>
1582
1582
  */
1583
- diskImageFormat: DiskImageFormat | string | undefined;
1583
+ diskImageFormat: DiskImageFormat | undefined;
1584
1584
  /**
1585
1585
  * @public
1586
1586
  * <p>The S3 bucket in which to store the output disk images for your VM.</p>
@@ -1869,7 +1869,7 @@ export interface Schedule {
1869
1869
  * <code>EXPRESSION_MATCH_ONLY</code>, it will build a new image every time the CRON
1870
1870
  * expression matches the current time. For semantic version syntax, see <a href="https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_CreateComponent.html">CreateComponent</a> in the <i> EC2 Image Builder API Reference</i>.</p>
1871
1871
  */
1872
- pipelineExecutionStartCondition?: PipelineExecutionStartCondition | string;
1872
+ pipelineExecutionStartCondition?: PipelineExecutionStartCondition;
1873
1873
  }
1874
1874
  /**
1875
1875
  * @public
@@ -1942,7 +1942,7 @@ export interface CreateImagePipelineRequest {
1942
1942
  * @public
1943
1943
  * <p>The status of the image pipeline.</p>
1944
1944
  */
1945
- status?: PipelineStatus | string;
1945
+ status?: PipelineStatus;
1946
1946
  /**
1947
1947
  * @public
1948
1948
  * <p>The tags of the image pipeline.</p>
@@ -2812,7 +2812,7 @@ export interface ImageRecipe {
2812
2812
  * <p>Specifies which type of image is created by the recipe - an AMI or a container
2813
2813
  * image.</p>
2814
2814
  */
2815
- type?: ImageType | string;
2815
+ type?: ImageType;
2816
2816
  /**
2817
2817
  * @public
2818
2818
  * <p>The name of the image recipe.</p>
@@ -2827,7 +2827,7 @@ export interface ImageRecipe {
2827
2827
  * @public
2828
2828
  * <p>The platform of the image recipe.</p>
2829
2829
  */
2830
- platform?: Platform | string;
2830
+ platform?: Platform;
2831
2831
  /**
2832
2832
  * @public
2833
2833
  * <p>The owner of the image recipe.</p>
@@ -3029,7 +3029,7 @@ export interface ImageScanState {
3029
3029
  * @public
3030
3030
  * <p>The current state of vulnerability scans for the image.</p>
3031
3031
  */
3032
- status?: ImageScanStatus | string;
3032
+ status?: ImageScanStatus;
3033
3033
  /**
3034
3034
  * @public
3035
3035
  * <p>The reason for the scan status for the image.</p>
@@ -3068,7 +3068,7 @@ export interface Image {
3068
3068
  * @public
3069
3069
  * <p>Specifies whether this image produces an AMI or a container image.</p>
3070
3070
  */
3071
- type?: ImageType | string;
3071
+ type?: ImageType;
3072
3072
  /**
3073
3073
  * @public
3074
3074
  * <p>The name of the image.</p>
@@ -3100,7 +3100,7 @@ export interface Image {
3100
3100
  * @public
3101
3101
  * <p>The image operating system platform, such as Linux or Windows.</p>
3102
3102
  */
3103
- platform?: Platform | string;
3103
+ platform?: Platform;
3104
3104
  /**
3105
3105
  * @public
3106
3106
  * <p>Indicates whether Image Builder collects additional information about the image, such as
@@ -3192,12 +3192,12 @@ export interface Image {
3192
3192
  * </li>
3193
3193
  * </ul>
3194
3194
  */
3195
- buildType?: BuildType | string;
3195
+ buildType?: BuildType;
3196
3196
  /**
3197
3197
  * @public
3198
3198
  * <p>The origin of the base image that Image Builder used to build this image.</p>
3199
3199
  */
3200
- imageSource?: ImageSource | string;
3200
+ imageSource?: ImageSource;
3201
3201
  /**
3202
3202
  * @public
3203
3203
  * <p>Contains information about the current state of scans for this image.</p>
@@ -3258,7 +3258,7 @@ export interface ImagePipeline {
3258
3258
  * @public
3259
3259
  * <p>The platform of the image pipeline.</p>
3260
3260
  */
3261
- platform?: Platform | string;
3261
+ platform?: Platform;
3262
3262
  /**
3263
3263
  * @public
3264
3264
  * <p>Collects additional information about the image being created, including the operating
@@ -3304,7 +3304,7 @@ export interface ImagePipeline {
3304
3304
  * @public
3305
3305
  * <p>The status of the image pipeline.</p>
3306
3306
  */
3307
- status?: PipelineStatus | string;
3307
+ status?: PipelineStatus;
3308
3308
  /**
3309
3309
  * @public
3310
3310
  * <p>The date on which this image pipeline was created.</p>
@@ -3527,12 +3527,12 @@ export interface GetWorkflowExecutionResponse {
3527
3527
  * @public
3528
3528
  * <p>The type of workflow that Image Builder ran for the specified runtime instance of the workflow.</p>
3529
3529
  */
3530
- type?: WorkflowType | string;
3530
+ type?: WorkflowType;
3531
3531
  /**
3532
3532
  * @public
3533
3533
  * <p>The current runtime status for the specified runtime instance of the workflow.</p>
3534
3534
  */
3535
- status?: WorkflowExecutionStatus | string;
3535
+ status?: WorkflowExecutionStatus;
3536
3536
  /**
3537
3537
  * @public
3538
3538
  * <p>The output message from the specified runtime instance of the workflow, if applicable.</p>
@@ -3666,13 +3666,13 @@ export interface GetWorkflowStepExecutionResponse {
3666
3666
  * @public
3667
3667
  * <p>The current status for the specified runtime version of the workflow step.</p>
3668
3668
  */
3669
- status?: WorkflowStepExecutionStatus | string;
3669
+ status?: WorkflowStepExecutionStatus;
3670
3670
  /**
3671
3671
  * @public
3672
3672
  * <p>Reports on the rollback status of the specified runtime version of the workflow step,
3673
3673
  * if applicable.</p>
3674
3674
  */
3675
- rollbackStatus?: WorkflowStepExecutionRollbackStatus | string;
3675
+ rollbackStatus?: WorkflowStepExecutionRollbackStatus;
3676
3676
  /**
3677
3677
  * @public
3678
3678
  * <p>The output message from the specified runtime instance of the workflow step, if applicable.</p>
@@ -3768,17 +3768,17 @@ export interface ImportComponentRequest {
3768
3768
  * <p>The type of the component denotes whether the component is used to build the image, or
3769
3769
  * only to test it.</p>
3770
3770
  */
3771
- type: ComponentType | string | undefined;
3771
+ type: ComponentType | undefined;
3772
3772
  /**
3773
3773
  * @public
3774
3774
  * <p>The format of the resource that you want to import as a component.</p>
3775
3775
  */
3776
- format: ComponentFormat | string | undefined;
3776
+ format: ComponentFormat | undefined;
3777
3777
  /**
3778
3778
  * @public
3779
3779
  * <p>The platform of the component.</p>
3780
3780
  */
3781
- platform: Platform | string | undefined;
3781
+ platform: Platform | undefined;
3782
3782
  /**
3783
3783
  * @public
3784
3784
  * <p>The data of the component. Used to specify the data inline. Either <code>data</code>
@@ -3865,7 +3865,7 @@ export interface ImportVmImageRequest {
3865
3865
  * @public
3866
3866
  * <p>The operating system platform for the imported VM.</p>
3867
3867
  */
3868
- platform: Platform | string | undefined;
3868
+ platform: Platform | undefined;
3869
3869
  /**
3870
3870
  * @public
3871
3871
  * <p>The operating system version for the imported VM.</p>
@@ -3993,7 +3993,7 @@ export interface ListComponentsRequest {
3993
3993
  * owners, you can specify components that Amazon manages, third party components, or
3994
3994
  * components that other accounts have shared with you.</p>
3995
3995
  */
3996
- owner?: Ownership | string;
3996
+ owner?: Ownership;
3997
3997
  /**
3998
3998
  * @public
3999
3999
  * <p>Use the following filters to streamline results:</p>
@@ -4084,7 +4084,7 @@ export interface ListContainerRecipesRequest {
4084
4084
  * you. You can omit this field to return container recipes belonging to your
4085
4085
  * account.</p>
4086
4086
  */
4087
- owner?: Ownership | string;
4087
+ owner?: Ownership;
4088
4088
  /**
4089
4089
  * @public
4090
4090
  * <p>Use the following filters to streamline results:</p>
@@ -4262,7 +4262,7 @@ export interface ImageSummary {
4262
4262
  * @public
4263
4263
  * <p>Specifies whether this image produces an AMI or a container image.</p>
4264
4264
  */
4265
- type?: ImageType | string;
4265
+ type?: ImageType;
4266
4266
  /**
4267
4267
  * @public
4268
4268
  * <p>The version of the image.</p>
@@ -4272,7 +4272,7 @@ export interface ImageSummary {
4272
4272
  * @public
4273
4273
  * <p>The image operating system platform, such as Linux or Windows.</p>
4274
4274
  */
4275
- platform?: Platform | string;
4275
+ platform?: Platform;
4276
4276
  /**
4277
4277
  * @public
4278
4278
  * <p>The operating system version of the instances that launch from this image. For
@@ -4326,12 +4326,12 @@ export interface ImageSummary {
4326
4326
  * </li>
4327
4327
  * </ul>
4328
4328
  */
4329
- buildType?: BuildType | string;
4329
+ buildType?: BuildType;
4330
4330
  /**
4331
4331
  * @public
4332
4332
  * <p>The origin of the base image that Image Builder used to build this image.</p>
4333
4333
  */
4334
- imageSource?: ImageSource | string;
4334
+ imageSource?: ImageSource;
4335
4335
  }
4336
4336
  /**
4337
4337
  * @public
@@ -4561,7 +4561,7 @@ export interface ListImageRecipesRequest {
4561
4561
  * want to view image recipes owned by yourself, by Amazon, or those image recipes that
4562
4562
  * have been shared with you by other customers.</p>
4563
4563
  */
4564
- owner?: Ownership | string;
4564
+ owner?: Ownership;
4565
4565
  /**
4566
4566
  * @public
4567
4567
  * <p>Use the following filters to streamline results:</p>
@@ -4615,7 +4615,7 @@ export interface ImageRecipeSummary {
4615
4615
  * @public
4616
4616
  * <p>The platform of the image recipe.</p>
4617
4617
  */
4618
- platform?: Platform | string;
4618
+ platform?: Platform;
4619
4619
  /**
4620
4620
  * @public
4621
4621
  * <p>The owner of the image recipe.</p>
@@ -4670,7 +4670,7 @@ export interface ListImagesRequest {
4670
4670
  * images owned by yourself, by Amazon, or those images that have been shared with you by
4671
4671
  * other customers.</p>
4672
4672
  */
4673
- owner?: Ownership | string;
4673
+ owner?: Ownership;
4674
4674
  /**
4675
4675
  * @public
4676
4676
  * <p>Use the following filters to streamline results:</p>
@@ -4760,7 +4760,7 @@ export interface ImageVersion {
4760
4760
  * @public
4761
4761
  * <p>Specifies whether this image produces an AMI or a container image.</p>
4762
4762
  */
4763
- type?: ImageType | string;
4763
+ type?: ImageType;
4764
4764
  /**
4765
4765
  * @public
4766
4766
  * <p>Details for a specific version of an Image Builder image. This version follows the semantic
@@ -4789,7 +4789,7 @@ export interface ImageVersion {
4789
4789
  * <p>The operating system platform of the image version, for example "Windows" or
4790
4790
  * "Linux".</p>
4791
4791
  */
4792
- platform?: Platform | string;
4792
+ platform?: Platform;
4793
4793
  /**
4794
4794
  * @public
4795
4795
  * <p>The operating system version of the Amazon EC2 build instance. For example, Amazon Linux 2,
@@ -4828,12 +4828,12 @@ export interface ImageVersion {
4828
4828
  * </li>
4829
4829
  * </ul>
4830
4830
  */
4831
- buildType?: BuildType | string;
4831
+ buildType?: BuildType;
4832
4832
  /**
4833
4833
  * @public
4834
4834
  * <p>The origin of the base image that Image Builder used to build this image.</p>
4835
4835
  */
4836
- imageSource?: ImageSource | string;
4836
+ imageSource?: ImageSource;
4837
4837
  }
4838
4838
  /**
4839
4839
  * @public
@@ -5488,12 +5488,12 @@ export interface WorkflowExecutionMetadata {
5488
5488
  * @public
5489
5489
  * <p>Indicates what type of workflow that Image Builder ran for this runtime instance of the workflow.</p>
5490
5490
  */
5491
- type?: WorkflowType | string;
5491
+ type?: WorkflowType;
5492
5492
  /**
5493
5493
  * @public
5494
5494
  * <p>The current runtime status for this workflow.</p>
5495
5495
  */
5496
- status?: WorkflowExecutionStatus | string;
5496
+ status?: WorkflowExecutionStatus;
5497
5497
  /**
5498
5498
  * @public
5499
5499
  * <p>The runtime output message from the workflow, if applicable.</p>
@@ -5616,12 +5616,12 @@ export interface WorkflowStepMetadata {
5616
5616
  * @public
5617
5617
  * <p>Runtime status for the workflow step.</p>
5618
5618
  */
5619
- status?: WorkflowStepExecutionStatus | string;
5619
+ status?: WorkflowStepExecutionStatus;
5620
5620
  /**
5621
5621
  * @public
5622
5622
  * <p>Reports on the rollback status of the step, if applicable.</p>
5623
5623
  */
5624
- rollbackStatus?: WorkflowStepExecutionRollbackStatus | string;
5624
+ rollbackStatus?: WorkflowStepExecutionRollbackStatus;
5625
5625
  /**
5626
5626
  * @public
5627
5627
  * <p>Detailed output message that the workflow step provides at runtime.</p>
@@ -6014,7 +6014,7 @@ export interface UpdateImagePipelineRequest {
6014
6014
  * @public
6015
6015
  * <p>The status of the image pipeline.</p>
6016
6016
  */
6017
- status?: PipelineStatus | string;
6017
+ status?: PipelineStatus;
6018
6018
  /**
6019
6019
  * @public
6020
6020
  * <p>The idempotency token used to make this request idempotent.</p>
@@ -32,7 +32,7 @@ export declare const ImageStatus: {
32
32
  };
33
33
  export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
34
34
  export interface ImageState {
35
- status?: ImageStatus | string;
35
+ status?: ImageStatus;
36
36
  reason?: string;
37
37
  }
38
38
  export interface Ami {
@@ -142,7 +142,7 @@ export declare const ComponentStatus: {
142
142
  export type ComponentStatus =
143
143
  (typeof ComponentStatus)[keyof typeof ComponentStatus];
144
144
  export interface ComponentState {
145
- status?: ComponentStatus | string;
145
+ status?: ComponentStatus;
146
146
  reason?: string;
147
147
  }
148
148
  export declare const ComponentType: {
@@ -156,8 +156,8 @@ export interface Component {
156
156
  version?: string;
157
157
  description?: string;
158
158
  changeDescription?: string;
159
- type?: ComponentType | string;
160
- platform?: Platform | string;
159
+ type?: ComponentType;
160
+ platform?: Platform;
161
161
  supportedOsVersions?: string[];
162
162
  state?: ComponentState;
163
163
  parameters?: ComponentParameterDetail[];
@@ -187,10 +187,10 @@ export interface ComponentSummary {
187
187
  arn?: string;
188
188
  name?: string;
189
189
  version?: string;
190
- platform?: Platform | string;
190
+ platform?: Platform;
191
191
  supportedOsVersions?: string[];
192
192
  state?: ComponentState;
193
- type?: ComponentType | string;
193
+ type?: ComponentType;
194
194
  owner?: string;
195
195
  description?: string;
196
196
  changeDescription?: string;
@@ -204,9 +204,9 @@ export interface ComponentVersion {
204
204
  name?: string;
205
205
  version?: string;
206
206
  description?: string;
207
- platform?: Platform | string;
207
+ platform?: Platform;
208
208
  supportedOsVersions?: string[];
209
- type?: ComponentType | string;
209
+ type?: ComponentType;
210
210
  owner?: string;
211
211
  dateCreated?: string;
212
212
  }
@@ -220,7 +220,7 @@ export declare const ContainerRepositoryService: {
220
220
  export type ContainerRepositoryService =
221
221
  (typeof ContainerRepositoryService)[keyof typeof ContainerRepositoryService];
222
222
  export interface TargetContainerRepository {
223
- service: ContainerRepositoryService | string | undefined;
223
+ service: ContainerRepositoryService | undefined;
224
224
  repositoryName: string | undefined;
225
225
  }
226
226
  export interface ContainerDistributionConfiguration {
@@ -249,7 +249,7 @@ export interface EbsInstanceBlockDeviceSpecification {
249
249
  kmsKeyId?: string;
250
250
  snapshotId?: string;
251
251
  volumeSize?: number;
252
- volumeType?: EbsVolumeType | string;
252
+ volumeType?: EbsVolumeType;
253
253
  throughput?: number;
254
254
  }
255
255
  export interface InstanceBlockDeviceMapping {
@@ -264,10 +264,10 @@ export interface InstanceConfiguration {
264
264
  }
265
265
  export interface ContainerRecipe {
266
266
  arn?: string;
267
- containerType?: ContainerType | string;
267
+ containerType?: ContainerType;
268
268
  name?: string;
269
269
  description?: string;
270
- platform?: Platform | string;
270
+ platform?: Platform;
271
271
  owner?: string;
272
272
  version?: string;
273
273
  components?: ComponentConfiguration[];
@@ -283,9 +283,9 @@ export interface ContainerRecipe {
283
283
  }
284
284
  export interface ContainerRecipeSummary {
285
285
  arn?: string;
286
- containerType?: ContainerType | string;
286
+ containerType?: ContainerType;
287
287
  name?: string;
288
- platform?: Platform | string;
288
+ platform?: Platform;
289
289
  owner?: string;
290
290
  parentImage?: string;
291
291
  dateCreated?: string;
@@ -296,7 +296,7 @@ export interface CreateComponentRequest {
296
296
  semanticVersion: string | undefined;
297
297
  description?: string;
298
298
  changeDescription?: string;
299
- platform: Platform | string | undefined;
299
+ platform: Platform | undefined;
300
300
  supportedOsVersions?: string[];
301
301
  data?: string;
302
302
  uri?: string;
@@ -334,7 +334,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
334
334
  );
335
335
  }
336
336
  export interface CreateContainerRecipeRequest {
337
- containerType: ContainerType | string | undefined;
337
+ containerType: ContainerType | undefined;
338
338
  name: string | undefined;
339
339
  description?: string;
340
340
  semanticVersion: string | undefined;
@@ -342,7 +342,7 @@ export interface CreateContainerRecipeRequest {
342
342
  instanceConfiguration?: InstanceConfiguration;
343
343
  dockerfileTemplateData?: string;
344
344
  dockerfileTemplateUri?: string;
345
- platformOverride?: Platform | string;
345
+ platformOverride?: Platform;
346
346
  imageOsVersionOverride?: string;
347
347
  parentImage: string | undefined;
348
348
  tags?: Record<string, string>;
@@ -392,7 +392,7 @@ export type DiskImageFormat =
392
392
  (typeof DiskImageFormat)[keyof typeof DiskImageFormat];
393
393
  export interface S3ExportConfiguration {
394
394
  roleName: string | undefined;
395
- diskImageFormat: DiskImageFormat | string | undefined;
395
+ diskImageFormat: DiskImageFormat | undefined;
396
396
  s3Bucket: string | undefined;
397
397
  s3Prefix?: string;
398
398
  }
@@ -454,7 +454,7 @@ export type PipelineExecutionStartCondition =
454
454
  export interface Schedule {
455
455
  scheduleExpression?: string;
456
456
  timezone?: string;
457
- pipelineExecutionStartCondition?: PipelineExecutionStartCondition | string;
457
+ pipelineExecutionStartCondition?: PipelineExecutionStartCondition;
458
458
  }
459
459
  export declare const PipelineStatus: {
460
460
  readonly DISABLED: "DISABLED";
@@ -472,7 +472,7 @@ export interface CreateImagePipelineRequest {
472
472
  imageTestsConfiguration?: ImageTestsConfiguration;
473
473
  enhancedImageMetadataEnabled?: boolean;
474
474
  schedule?: Schedule;
475
- status?: PipelineStatus | string;
475
+ status?: PipelineStatus;
476
476
  tags?: Record<string, string>;
477
477
  clientToken?: string;
478
478
  imageScanningConfiguration?: ImageScanningConfiguration;
@@ -680,10 +680,10 @@ export declare const ImageType: {
680
680
  export type ImageType = (typeof ImageType)[keyof typeof ImageType];
681
681
  export interface ImageRecipe {
682
682
  arn?: string;
683
- type?: ImageType | string;
683
+ type?: ImageType;
684
684
  name?: string;
685
685
  description?: string;
686
- platform?: Platform | string;
686
+ platform?: Platform;
687
687
  owner?: string;
688
688
  version?: string;
689
689
  components?: ComponentConfiguration[];
@@ -735,15 +735,15 @@ export declare const ImageScanStatus: {
735
735
  export type ImageScanStatus =
736
736
  (typeof ImageScanStatus)[keyof typeof ImageScanStatus];
737
737
  export interface ImageScanState {
738
- status?: ImageScanStatus | string;
738
+ status?: ImageScanStatus;
739
739
  reason?: string;
740
740
  }
741
741
  export interface Image {
742
742
  arn?: string;
743
- type?: ImageType | string;
743
+ type?: ImageType;
744
744
  name?: string;
745
745
  version?: string;
746
- platform?: Platform | string;
746
+ platform?: Platform;
747
747
  enhancedImageMetadataEnabled?: boolean;
748
748
  osVersion?: string;
749
749
  state?: ImageState;
@@ -757,8 +757,8 @@ export interface Image {
757
757
  dateCreated?: string;
758
758
  outputResources?: OutputResources;
759
759
  tags?: Record<string, string>;
760
- buildType?: BuildType | string;
761
- imageSource?: ImageSource | string;
760
+ buildType?: BuildType;
761
+ imageSource?: ImageSource;
762
762
  scanState?: ImageScanState;
763
763
  imageScanningConfiguration?: ImageScanningConfiguration;
764
764
  }
@@ -773,7 +773,7 @@ export interface ImagePipeline {
773
773
  arn?: string;
774
774
  name?: string;
775
775
  description?: string;
776
- platform?: Platform | string;
776
+ platform?: Platform;
777
777
  enhancedImageMetadataEnabled?: boolean;
778
778
  imageRecipeArn?: string;
779
779
  containerRecipeArn?: string;
@@ -781,7 +781,7 @@ export interface ImagePipeline {
781
781
  distributionConfigurationArn?: string;
782
782
  imageTestsConfiguration?: ImageTestsConfiguration;
783
783
  schedule?: Schedule;
784
- status?: PipelineStatus | string;
784
+ status?: PipelineStatus;
785
785
  dateCreated?: string;
786
786
  dateUpdated?: string;
787
787
  dateLastRun?: string;
@@ -846,8 +846,8 @@ export interface GetWorkflowExecutionResponse {
846
846
  workflowBuildVersionArn?: string;
847
847
  workflowExecutionId?: string;
848
848
  imageBuildVersionArn?: string;
849
- type?: WorkflowType | string;
850
- status?: WorkflowExecutionStatus | string;
849
+ type?: WorkflowType;
850
+ status?: WorkflowExecutionStatus;
851
851
  message?: string;
852
852
  totalStepCount?: number;
853
853
  totalStepsSucceeded?: number;
@@ -885,8 +885,8 @@ export interface GetWorkflowStepExecutionResponse {
885
885
  name?: string;
886
886
  description?: string;
887
887
  action?: string;
888
- status?: WorkflowStepExecutionStatus | string;
889
- rollbackStatus?: WorkflowStepExecutionRollbackStatus | string;
888
+ status?: WorkflowStepExecutionStatus;
889
+ rollbackStatus?: WorkflowStepExecutionRollbackStatus;
890
890
  message?: string;
891
891
  inputs?: string;
892
892
  outputs?: string;
@@ -904,9 +904,9 @@ export interface ImportComponentRequest {
904
904
  semanticVersion: string | undefined;
905
905
  description?: string;
906
906
  changeDescription?: string;
907
- type: ComponentType | string | undefined;
908
- format: ComponentFormat | string | undefined;
909
- platform: Platform | string | undefined;
907
+ type: ComponentType | undefined;
908
+ format: ComponentFormat | undefined;
909
+ platform: Platform | undefined;
910
910
  data?: string;
911
911
  uri?: string;
912
912
  kmsKeyId?: string;
@@ -922,7 +922,7 @@ export interface ImportVmImageRequest {
922
922
  name: string | undefined;
923
923
  semanticVersion: string | undefined;
924
924
  description?: string;
925
- platform: Platform | string | undefined;
925
+ platform: Platform | undefined;
926
926
  osVersion?: string;
927
927
  vmImportTaskId: string | undefined;
928
928
  tags?: Record<string, string>;
@@ -961,7 +961,7 @@ export declare const Ownership: {
961
961
  };
962
962
  export type Ownership = (typeof Ownership)[keyof typeof Ownership];
963
963
  export interface ListComponentsRequest {
964
- owner?: Ownership | string;
964
+ owner?: Ownership;
965
965
  filters?: Filter[];
966
966
  byName?: boolean;
967
967
  maxResults?: number;
@@ -973,7 +973,7 @@ export interface ListComponentsResponse {
973
973
  nextToken?: string;
974
974
  }
975
975
  export interface ListContainerRecipesRequest {
976
- owner?: Ownership | string;
976
+ owner?: Ownership;
977
977
  filters?: Filter[];
978
978
  maxResults?: number;
979
979
  nextToken?: string;
@@ -1002,17 +1002,17 @@ export interface ListImageBuildVersionsRequest {
1002
1002
  export interface ImageSummary {
1003
1003
  arn?: string;
1004
1004
  name?: string;
1005
- type?: ImageType | string;
1005
+ type?: ImageType;
1006
1006
  version?: string;
1007
- platform?: Platform | string;
1007
+ platform?: Platform;
1008
1008
  osVersion?: string;
1009
1009
  state?: ImageState;
1010
1010
  owner?: string;
1011
1011
  dateCreated?: string;
1012
1012
  outputResources?: OutputResources;
1013
1013
  tags?: Record<string, string>;
1014
- buildType?: BuildType | string;
1015
- imageSource?: ImageSource | string;
1014
+ buildType?: BuildType;
1015
+ imageSource?: ImageSource;
1016
1016
  }
1017
1017
  export interface ListImageBuildVersionsResponse {
1018
1018
  requestId?: string;
@@ -1055,7 +1055,7 @@ export interface ListImagePipelinesResponse {
1055
1055
  nextToken?: string;
1056
1056
  }
1057
1057
  export interface ListImageRecipesRequest {
1058
- owner?: Ownership | string;
1058
+ owner?: Ownership;
1059
1059
  filters?: Filter[];
1060
1060
  maxResults?: number;
1061
1061
  nextToken?: string;
@@ -1063,7 +1063,7 @@ export interface ListImageRecipesRequest {
1063
1063
  export interface ImageRecipeSummary {
1064
1064
  arn?: string;
1065
1065
  name?: string;
1066
- platform?: Platform | string;
1066
+ platform?: Platform;
1067
1067
  owner?: string;
1068
1068
  parentImage?: string;
1069
1069
  dateCreated?: string;
@@ -1075,7 +1075,7 @@ export interface ListImageRecipesResponse {
1075
1075
  nextToken?: string;
1076
1076
  }
1077
1077
  export interface ListImagesRequest {
1078
- owner?: Ownership | string;
1078
+ owner?: Ownership;
1079
1079
  filters?: Filter[];
1080
1080
  byName?: boolean;
1081
1081
  maxResults?: number;
@@ -1085,14 +1085,14 @@ export interface ListImagesRequest {
1085
1085
  export interface ImageVersion {
1086
1086
  arn?: string;
1087
1087
  name?: string;
1088
- type?: ImageType | string;
1088
+ type?: ImageType;
1089
1089
  version?: string;
1090
- platform?: Platform | string;
1090
+ platform?: Platform;
1091
1091
  osVersion?: string;
1092
1092
  owner?: string;
1093
1093
  dateCreated?: string;
1094
- buildType?: BuildType | string;
1095
- imageSource?: ImageSource | string;
1094
+ buildType?: BuildType;
1095
+ imageSource?: ImageSource;
1096
1096
  }
1097
1097
  export interface ListImagesResponse {
1098
1098
  requestId?: string;
@@ -1229,8 +1229,8 @@ export interface ListWorkflowExecutionsRequest {
1229
1229
  export interface WorkflowExecutionMetadata {
1230
1230
  workflowBuildVersionArn?: string;
1231
1231
  workflowExecutionId?: string;
1232
- type?: WorkflowType | string;
1233
- status?: WorkflowExecutionStatus | string;
1232
+ type?: WorkflowType;
1233
+ status?: WorkflowExecutionStatus;
1234
1234
  message?: string;
1235
1235
  totalStepCount?: number;
1236
1236
  totalStepsSucceeded?: number;
@@ -1256,8 +1256,8 @@ export interface WorkflowStepMetadata {
1256
1256
  name?: string;
1257
1257
  description?: string;
1258
1258
  action?: string;
1259
- status?: WorkflowStepExecutionStatus | string;
1260
- rollbackStatus?: WorkflowStepExecutionRollbackStatus | string;
1259
+ status?: WorkflowStepExecutionStatus;
1260
+ rollbackStatus?: WorkflowStepExecutionRollbackStatus;
1261
1261
  message?: string;
1262
1262
  inputs?: string;
1263
1263
  outputs?: string;
@@ -1352,7 +1352,7 @@ export interface UpdateImagePipelineRequest {
1352
1352
  imageTestsConfiguration?: ImageTestsConfiguration;
1353
1353
  enhancedImageMetadataEnabled?: boolean;
1354
1354
  schedule?: Schedule;
1355
- status?: PipelineStatus | string;
1355
+ status?: PipelineStatus;
1356
1356
  clientToken?: string;
1357
1357
  imageScanningConfiguration?: ImageScanningConfiguration;
1358
1358
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-imagebuilder",
3
3
  "description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",