@aws-sdk/client-imagebuilder 3.325.0 → 3.327.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.
Files changed (57) hide show
  1. package/dist-types/commands/CancelImageCreationCommand.d.ts +8 -0
  2. package/dist-types/commands/CreateComponentCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +8 -0
  4. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +8 -0
  5. package/dist-types/commands/CreateImageCommand.d.ts +8 -0
  6. package/dist-types/commands/CreateImagePipelineCommand.d.ts +8 -0
  7. package/dist-types/commands/CreateImageRecipeCommand.d.ts +8 -0
  8. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +8 -0
  9. package/dist-types/commands/DeleteComponentCommand.d.ts +7 -0
  10. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +7 -0
  11. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +7 -0
  12. package/dist-types/commands/DeleteImageCommand.d.ts +7 -0
  13. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +7 -0
  14. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +7 -0
  15. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +7 -0
  16. package/dist-types/commands/GetComponentCommand.d.ts +42 -0
  17. package/dist-types/commands/GetComponentPolicyCommand.d.ts +7 -0
  18. package/dist-types/commands/GetContainerRecipeCommand.d.ts +61 -0
  19. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +7 -0
  20. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +88 -0
  21. package/dist-types/commands/GetImageCommand.d.ts +283 -0
  22. package/dist-types/commands/GetImagePipelineCommand.d.ts +43 -0
  23. package/dist-types/commands/GetImagePolicyCommand.d.ts +7 -0
  24. package/dist-types/commands/GetImageRecipeCommand.d.ts +57 -0
  25. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +7 -0
  26. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +40 -0
  27. package/dist-types/commands/GetWorkflowExecutionCommand.d.ts +18 -0
  28. package/dist-types/commands/GetWorkflowStepExecutionCommand.d.ts +22 -0
  29. package/dist-types/commands/ImportComponentCommand.d.ts +8 -0
  30. package/dist-types/commands/ImportVmImageCommand.d.ts +8 -0
  31. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +32 -0
  32. package/dist-types/commands/ListComponentsCommand.d.ts +22 -0
  33. package/dist-types/commands/ListContainerRecipesCommand.d.ts +21 -0
  34. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +22 -0
  35. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +51 -0
  36. package/dist-types/commands/ListImagePackagesCommand.d.ts +13 -0
  37. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +51 -0
  38. package/dist-types/commands/ListImagePipelinesCommand.d.ts +46 -0
  39. package/dist-types/commands/ListImageRecipesCommand.d.ts +20 -0
  40. package/dist-types/commands/ListImageScanFindingAggregationsCommand.d.ts +48 -0
  41. package/dist-types/commands/ListImageScanFindingsCommand.d.ts +79 -0
  42. package/dist-types/commands/ListImagesCommand.d.ts +21 -0
  43. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +26 -0
  44. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  45. package/dist-types/commands/ListWorkflowExecutionsCommand.d.ts +24 -0
  46. package/dist-types/commands/ListWorkflowStepExecutionsCommand.d.ts +26 -0
  47. package/dist-types/commands/PutComponentPolicyCommand.d.ts +7 -0
  48. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +7 -0
  49. package/dist-types/commands/PutImagePolicyCommand.d.ts +7 -0
  50. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +7 -0
  51. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +8 -0
  52. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  53. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  54. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +8 -0
  55. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +8 -0
  56. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +8 -0
  57. package/package.json +7 -7
@@ -31,6 +31,287 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare
31
31
  * };
32
32
  * const command = new GetImageCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetImageResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // image: { // Image
37
+ * // arn: "STRING_VALUE",
38
+ * // type: "AMI" || "DOCKER",
39
+ * // name: "STRING_VALUE",
40
+ * // version: "STRING_VALUE",
41
+ * // platform: "Windows" || "Linux",
42
+ * // enhancedImageMetadataEnabled: true || false,
43
+ * // osVersion: "STRING_VALUE",
44
+ * // state: { // ImageState
45
+ * // status: "PENDING" || "CREATING" || "BUILDING" || "TESTING" || "DISTRIBUTING" || "INTEGRATING" || "AVAILABLE" || "CANCELLED" || "FAILED" || "DEPRECATED" || "DELETED",
46
+ * // reason: "STRING_VALUE",
47
+ * // },
48
+ * // imageRecipe: { // ImageRecipe
49
+ * // arn: "STRING_VALUE",
50
+ * // type: "AMI" || "DOCKER",
51
+ * // name: "STRING_VALUE",
52
+ * // description: "STRING_VALUE",
53
+ * // platform: "Windows" || "Linux",
54
+ * // owner: "STRING_VALUE",
55
+ * // version: "STRING_VALUE",
56
+ * // components: [ // ComponentConfigurationList
57
+ * // { // ComponentConfiguration
58
+ * // componentArn: "STRING_VALUE", // required
59
+ * // parameters: [ // ComponentParameterList
60
+ * // { // ComponentParameter
61
+ * // name: "STRING_VALUE", // required
62
+ * // value: [ // ComponentParameterValueList // required
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // },
66
+ * // ],
67
+ * // },
68
+ * // ],
69
+ * // parentImage: "STRING_VALUE",
70
+ * // blockDeviceMappings: [ // InstanceBlockDeviceMappings
71
+ * // { // InstanceBlockDeviceMapping
72
+ * // deviceName: "STRING_VALUE",
73
+ * // ebs: { // EbsInstanceBlockDeviceSpecification
74
+ * // encrypted: true || false,
75
+ * // deleteOnTermination: true || false,
76
+ * // iops: Number("int"),
77
+ * // kmsKeyId: "STRING_VALUE",
78
+ * // snapshotId: "STRING_VALUE",
79
+ * // volumeSize: Number("int"),
80
+ * // volumeType: "standard" || "io1" || "io2" || "gp2" || "gp3" || "sc1" || "st1",
81
+ * // throughput: Number("int"),
82
+ * // },
83
+ * // virtualName: "STRING_VALUE",
84
+ * // noDevice: "STRING_VALUE",
85
+ * // },
86
+ * // ],
87
+ * // dateCreated: "STRING_VALUE",
88
+ * // tags: { // TagMap
89
+ * // "<keys>": "STRING_VALUE",
90
+ * // },
91
+ * // workingDirectory: "STRING_VALUE",
92
+ * // additionalInstanceConfiguration: { // AdditionalInstanceConfiguration
93
+ * // systemsManagerAgent: { // SystemsManagerAgent
94
+ * // uninstallAfterBuild: true || false,
95
+ * // },
96
+ * // userDataOverride: "STRING_VALUE",
97
+ * // },
98
+ * // },
99
+ * // containerRecipe: { // ContainerRecipe
100
+ * // arn: "STRING_VALUE",
101
+ * // containerType: "DOCKER",
102
+ * // name: "STRING_VALUE",
103
+ * // description: "STRING_VALUE",
104
+ * // platform: "Windows" || "Linux",
105
+ * // owner: "STRING_VALUE",
106
+ * // version: "STRING_VALUE",
107
+ * // components: [
108
+ * // {
109
+ * // componentArn: "STRING_VALUE", // required
110
+ * // parameters: [
111
+ * // {
112
+ * // name: "STRING_VALUE", // required
113
+ * // value: [ // required
114
+ * // "STRING_VALUE",
115
+ * // ],
116
+ * // },
117
+ * // ],
118
+ * // },
119
+ * // ],
120
+ * // instanceConfiguration: { // InstanceConfiguration
121
+ * // image: "STRING_VALUE",
122
+ * // blockDeviceMappings: [
123
+ * // {
124
+ * // deviceName: "STRING_VALUE",
125
+ * // ebs: {
126
+ * // encrypted: true || false,
127
+ * // deleteOnTermination: true || false,
128
+ * // iops: Number("int"),
129
+ * // kmsKeyId: "STRING_VALUE",
130
+ * // snapshotId: "STRING_VALUE",
131
+ * // volumeSize: Number("int"),
132
+ * // volumeType: "standard" || "io1" || "io2" || "gp2" || "gp3" || "sc1" || "st1",
133
+ * // throughput: Number("int"),
134
+ * // },
135
+ * // virtualName: "STRING_VALUE",
136
+ * // noDevice: "STRING_VALUE",
137
+ * // },
138
+ * // ],
139
+ * // },
140
+ * // dockerfileTemplateData: "STRING_VALUE",
141
+ * // kmsKeyId: "STRING_VALUE",
142
+ * // encrypted: true || false,
143
+ * // parentImage: "STRING_VALUE",
144
+ * // dateCreated: "STRING_VALUE",
145
+ * // tags: {
146
+ * // "<keys>": "STRING_VALUE",
147
+ * // },
148
+ * // workingDirectory: "STRING_VALUE",
149
+ * // targetRepository: { // TargetContainerRepository
150
+ * // service: "ECR", // required
151
+ * // repositoryName: "STRING_VALUE", // required
152
+ * // },
153
+ * // },
154
+ * // sourcePipelineName: "STRING_VALUE",
155
+ * // sourcePipelineArn: "STRING_VALUE",
156
+ * // infrastructureConfiguration: { // InfrastructureConfiguration
157
+ * // arn: "STRING_VALUE",
158
+ * // name: "STRING_VALUE",
159
+ * // description: "STRING_VALUE",
160
+ * // instanceTypes: [ // InstanceTypeList
161
+ * // "STRING_VALUE",
162
+ * // ],
163
+ * // instanceProfileName: "STRING_VALUE",
164
+ * // securityGroupIds: [ // SecurityGroupIds
165
+ * // "STRING_VALUE",
166
+ * // ],
167
+ * // subnetId: "STRING_VALUE",
168
+ * // logging: { // Logging
169
+ * // s3Logs: { // S3Logs
170
+ * // s3BucketName: "STRING_VALUE",
171
+ * // s3KeyPrefix: "STRING_VALUE",
172
+ * // },
173
+ * // },
174
+ * // keyPair: "STRING_VALUE",
175
+ * // terminateInstanceOnFailure: true || false,
176
+ * // snsTopicArn: "STRING_VALUE",
177
+ * // dateCreated: "STRING_VALUE",
178
+ * // dateUpdated: "STRING_VALUE",
179
+ * // resourceTags: { // ResourceTagMap
180
+ * // "<keys>": "STRING_VALUE",
181
+ * // },
182
+ * // instanceMetadataOptions: { // InstanceMetadataOptions
183
+ * // httpTokens: "STRING_VALUE",
184
+ * // httpPutResponseHopLimit: Number("int"),
185
+ * // },
186
+ * // tags: {
187
+ * // "<keys>": "STRING_VALUE",
188
+ * // },
189
+ * // },
190
+ * // distributionConfiguration: { // DistributionConfiguration
191
+ * // arn: "STRING_VALUE",
192
+ * // name: "STRING_VALUE",
193
+ * // description: "STRING_VALUE",
194
+ * // distributions: [ // DistributionList
195
+ * // { // Distribution
196
+ * // region: "STRING_VALUE", // required
197
+ * // amiDistributionConfiguration: { // AmiDistributionConfiguration
198
+ * // name: "STRING_VALUE",
199
+ * // description: "STRING_VALUE",
200
+ * // targetAccountIds: [ // AccountList
201
+ * // "STRING_VALUE",
202
+ * // ],
203
+ * // amiTags: {
204
+ * // "<keys>": "STRING_VALUE",
205
+ * // },
206
+ * // kmsKeyId: "STRING_VALUE",
207
+ * // launchPermission: { // LaunchPermissionConfiguration
208
+ * // userIds: [
209
+ * // "STRING_VALUE",
210
+ * // ],
211
+ * // userGroups: [ // StringList
212
+ * // "STRING_VALUE",
213
+ * // ],
214
+ * // organizationArns: [ // OrganizationArnList
215
+ * // "STRING_VALUE",
216
+ * // ],
217
+ * // organizationalUnitArns: [ // OrganizationalUnitArnList
218
+ * // "STRING_VALUE",
219
+ * // ],
220
+ * // },
221
+ * // },
222
+ * // containerDistributionConfiguration: { // ContainerDistributionConfiguration
223
+ * // description: "STRING_VALUE",
224
+ * // containerTags: [
225
+ * // "STRING_VALUE",
226
+ * // ],
227
+ * // targetRepository: {
228
+ * // service: "ECR", // required
229
+ * // repositoryName: "STRING_VALUE", // required
230
+ * // },
231
+ * // },
232
+ * // licenseConfigurationArns: [ // LicenseConfigurationArnList
233
+ * // "STRING_VALUE",
234
+ * // ],
235
+ * // launchTemplateConfigurations: [ // LaunchTemplateConfigurationList
236
+ * // { // LaunchTemplateConfiguration
237
+ * // launchTemplateId: "STRING_VALUE", // required
238
+ * // accountId: "STRING_VALUE",
239
+ * // setDefaultVersion: true || false,
240
+ * // },
241
+ * // ],
242
+ * // s3ExportConfiguration: { // S3ExportConfiguration
243
+ * // roleName: "STRING_VALUE", // required
244
+ * // diskImageFormat: "VMDK" || "RAW" || "VHD", // required
245
+ * // s3Bucket: "STRING_VALUE", // required
246
+ * // s3Prefix: "STRING_VALUE",
247
+ * // },
248
+ * // fastLaunchConfigurations: [ // FastLaunchConfigurationList
249
+ * // { // FastLaunchConfiguration
250
+ * // enabled: true || false, // required
251
+ * // snapshotConfiguration: { // FastLaunchSnapshotConfiguration
252
+ * // targetResourceCount: Number("int"),
253
+ * // },
254
+ * // maxParallelLaunches: Number("int"),
255
+ * // launchTemplate: { // FastLaunchLaunchTemplateSpecification
256
+ * // launchTemplateId: "STRING_VALUE",
257
+ * // launchTemplateName: "STRING_VALUE",
258
+ * // launchTemplateVersion: "STRING_VALUE",
259
+ * // },
260
+ * // accountId: "STRING_VALUE",
261
+ * // },
262
+ * // ],
263
+ * // },
264
+ * // ],
265
+ * // timeoutMinutes: Number("int"), // required
266
+ * // dateCreated: "STRING_VALUE",
267
+ * // dateUpdated: "STRING_VALUE",
268
+ * // tags: {
269
+ * // "<keys>": "STRING_VALUE",
270
+ * // },
271
+ * // },
272
+ * // imageTestsConfiguration: { // ImageTestsConfiguration
273
+ * // imageTestsEnabled: true || false,
274
+ * // timeoutMinutes: Number("int"),
275
+ * // },
276
+ * // dateCreated: "STRING_VALUE",
277
+ * // outputResources: { // OutputResources
278
+ * // amis: [ // AmiList
279
+ * // { // Ami
280
+ * // region: "STRING_VALUE",
281
+ * // image: "STRING_VALUE",
282
+ * // name: "STRING_VALUE",
283
+ * // description: "STRING_VALUE",
284
+ * // state: {
285
+ * // status: "PENDING" || "CREATING" || "BUILDING" || "TESTING" || "DISTRIBUTING" || "INTEGRATING" || "AVAILABLE" || "CANCELLED" || "FAILED" || "DEPRECATED" || "DELETED",
286
+ * // reason: "STRING_VALUE",
287
+ * // },
288
+ * // accountId: "STRING_VALUE",
289
+ * // },
290
+ * // ],
291
+ * // containers: [ // ContainerList
292
+ * // { // Container
293
+ * // region: "STRING_VALUE",
294
+ * // imageUris: "<StringList>",
295
+ * // },
296
+ * // ],
297
+ * // },
298
+ * // tags: "<TagMap>",
299
+ * // buildType: "USER_INITIATED" || "SCHEDULED" || "IMPORT",
300
+ * // imageSource: "AMAZON_MANAGED" || "AWS_MARKETPLACE" || "IMPORTED" || "CUSTOM",
301
+ * // scanState: { // ImageScanState
302
+ * // status: "PENDING" || "SCANNING" || "COLLECTING" || "COMPLETED" || "ABANDONED" || "FAILED" || "TIMED_OUT",
303
+ * // reason: "STRING_VALUE",
304
+ * // },
305
+ * // imageScanningConfiguration: { // ImageScanningConfiguration
306
+ * // imageScanningEnabled: true || false,
307
+ * // ecrConfiguration: { // EcrConfiguration
308
+ * // repositoryName: "STRING_VALUE",
309
+ * // containerTags: "<StringList>",
310
+ * // },
311
+ * // },
312
+ * // },
313
+ * // };
314
+ *
34
315
  * ```
35
316
  *
36
317
  * @param GetImageCommandInput - {@link GetImageCommandInput}
@@ -60,6 +341,8 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare
60
341
  * @throws {@link ServiceUnavailableException} (server fault)
61
342
  * <p>The service is unable to process your request at this time.</p>
62
343
  *
344
+ * @throws {@link ImagebuilderServiceException}
345
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
346
  *
64
347
  */
65
348
  export declare class GetImageCommand extends $Command<GetImageCommandInput, GetImageCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,47 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse,
31
31
  * };
32
32
  * const command = new GetImagePipelineCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetImagePipelineResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // imagePipeline: { // ImagePipeline
37
+ * // arn: "STRING_VALUE",
38
+ * // name: "STRING_VALUE",
39
+ * // description: "STRING_VALUE",
40
+ * // platform: "Windows" || "Linux",
41
+ * // enhancedImageMetadataEnabled: true || false,
42
+ * // imageRecipeArn: "STRING_VALUE",
43
+ * // containerRecipeArn: "STRING_VALUE",
44
+ * // infrastructureConfigurationArn: "STRING_VALUE",
45
+ * // distributionConfigurationArn: "STRING_VALUE",
46
+ * // imageTestsConfiguration: { // ImageTestsConfiguration
47
+ * // imageTestsEnabled: true || false,
48
+ * // timeoutMinutes: Number("int"),
49
+ * // },
50
+ * // schedule: { // Schedule
51
+ * // scheduleExpression: "STRING_VALUE",
52
+ * // timezone: "STRING_VALUE",
53
+ * // pipelineExecutionStartCondition: "EXPRESSION_MATCH_ONLY" || "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
54
+ * // },
55
+ * // status: "DISABLED" || "ENABLED",
56
+ * // dateCreated: "STRING_VALUE",
57
+ * // dateUpdated: "STRING_VALUE",
58
+ * // dateLastRun: "STRING_VALUE",
59
+ * // dateNextRun: "STRING_VALUE",
60
+ * // tags: { // TagMap
61
+ * // "<keys>": "STRING_VALUE",
62
+ * // },
63
+ * // imageScanningConfiguration: { // ImageScanningConfiguration
64
+ * // imageScanningEnabled: true || false,
65
+ * // ecrConfiguration: { // EcrConfiguration
66
+ * // repositoryName: "STRING_VALUE",
67
+ * // containerTags: [ // StringList
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // },
71
+ * // },
72
+ * // },
73
+ * // };
74
+ *
34
75
  * ```
35
76
  *
36
77
  * @param GetImagePipelineCommandInput - {@link GetImagePipelineCommandInput}
@@ -60,6 +101,8 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse,
60
101
  * @throws {@link ServiceUnavailableException} (server fault)
61
102
  * <p>The service is unable to process your request at this time.</p>
62
103
  *
104
+ * @throws {@link ImagebuilderServiceException}
105
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
106
  *
64
107
  */
65
108
  export declare class GetImagePipelineCommand extends $Command<GetImagePipelineCommandInput, GetImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
31
31
  * };
32
32
  * const command = new GetImagePolicyCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetImagePolicyResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // policy: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param GetImagePolicyCommandInput - {@link GetImagePolicyCommandInput}
@@ -58,6 +63,8 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
58
63
  * @throws {@link ServiceUnavailableException} (server fault)
59
64
  * <p>The service is unable to process your request at this time.</p>
60
65
  *
66
+ * @throws {@link ImagebuilderServiceException}
67
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
61
68
  *
62
69
  */
63
70
  export declare class GetImagePolicyCommand extends $Command<GetImagePolicyCommandInput, GetImagePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,61 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
31
31
  * };
32
32
  * const command = new GetImageRecipeCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetImageRecipeResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // imageRecipe: { // ImageRecipe
37
+ * // arn: "STRING_VALUE",
38
+ * // type: "AMI" || "DOCKER",
39
+ * // name: "STRING_VALUE",
40
+ * // description: "STRING_VALUE",
41
+ * // platform: "Windows" || "Linux",
42
+ * // owner: "STRING_VALUE",
43
+ * // version: "STRING_VALUE",
44
+ * // components: [ // ComponentConfigurationList
45
+ * // { // ComponentConfiguration
46
+ * // componentArn: "STRING_VALUE", // required
47
+ * // parameters: [ // ComponentParameterList
48
+ * // { // ComponentParameter
49
+ * // name: "STRING_VALUE", // required
50
+ * // value: [ // ComponentParameterValueList // required
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // },
54
+ * // ],
55
+ * // },
56
+ * // ],
57
+ * // parentImage: "STRING_VALUE",
58
+ * // blockDeviceMappings: [ // InstanceBlockDeviceMappings
59
+ * // { // InstanceBlockDeviceMapping
60
+ * // deviceName: "STRING_VALUE",
61
+ * // ebs: { // EbsInstanceBlockDeviceSpecification
62
+ * // encrypted: true || false,
63
+ * // deleteOnTermination: true || false,
64
+ * // iops: Number("int"),
65
+ * // kmsKeyId: "STRING_VALUE",
66
+ * // snapshotId: "STRING_VALUE",
67
+ * // volumeSize: Number("int"),
68
+ * // volumeType: "standard" || "io1" || "io2" || "gp2" || "gp3" || "sc1" || "st1",
69
+ * // throughput: Number("int"),
70
+ * // },
71
+ * // virtualName: "STRING_VALUE",
72
+ * // noDevice: "STRING_VALUE",
73
+ * // },
74
+ * // ],
75
+ * // dateCreated: "STRING_VALUE",
76
+ * // tags: { // TagMap
77
+ * // "<keys>": "STRING_VALUE",
78
+ * // },
79
+ * // workingDirectory: "STRING_VALUE",
80
+ * // additionalInstanceConfiguration: { // AdditionalInstanceConfiguration
81
+ * // systemsManagerAgent: { // SystemsManagerAgent
82
+ * // uninstallAfterBuild: true || false,
83
+ * // },
84
+ * // userDataOverride: "STRING_VALUE",
85
+ * // },
86
+ * // },
87
+ * // };
88
+ *
34
89
  * ```
35
90
  *
36
91
  * @param GetImageRecipeCommandInput - {@link GetImageRecipeCommandInput}
@@ -60,6 +115,8 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
60
115
  * @throws {@link ServiceUnavailableException} (server fault)
61
116
  * <p>The service is unable to process your request at this time.</p>
62
117
  *
118
+ * @throws {@link ImagebuilderServiceException}
119
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
120
  *
64
121
  */
65
122
  export declare class GetImageRecipeCommand extends $Command<GetImageRecipeCommandInput, GetImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
31
31
  * };
32
32
  * const command = new GetImageRecipePolicyCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetImageRecipePolicyResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // policy: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param GetImageRecipePolicyCommandInput - {@link GetImageRecipePolicyCommandInput}
@@ -58,6 +63,8 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
58
63
  * @throws {@link ServiceUnavailableException} (server fault)
59
64
  * <p>The service is unable to process your request at this time.</p>
60
65
  *
66
+ * @throws {@link ImagebuilderServiceException}
67
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
61
68
  *
62
69
  */
63
70
  export declare class GetImageRecipePolicyCommand extends $Command<GetImageRecipePolicyCommandInput, GetImageRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,44 @@ export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastr
31
31
  * };
32
32
  * const command = new GetInfrastructureConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetInfrastructureConfigurationResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // infrastructureConfiguration: { // InfrastructureConfiguration
37
+ * // arn: "STRING_VALUE",
38
+ * // name: "STRING_VALUE",
39
+ * // description: "STRING_VALUE",
40
+ * // instanceTypes: [ // InstanceTypeList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // instanceProfileName: "STRING_VALUE",
44
+ * // securityGroupIds: [ // SecurityGroupIds
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // subnetId: "STRING_VALUE",
48
+ * // logging: { // Logging
49
+ * // s3Logs: { // S3Logs
50
+ * // s3BucketName: "STRING_VALUE",
51
+ * // s3KeyPrefix: "STRING_VALUE",
52
+ * // },
53
+ * // },
54
+ * // keyPair: "STRING_VALUE",
55
+ * // terminateInstanceOnFailure: true || false,
56
+ * // snsTopicArn: "STRING_VALUE",
57
+ * // dateCreated: "STRING_VALUE",
58
+ * // dateUpdated: "STRING_VALUE",
59
+ * // resourceTags: { // ResourceTagMap
60
+ * // "<keys>": "STRING_VALUE",
61
+ * // },
62
+ * // instanceMetadataOptions: { // InstanceMetadataOptions
63
+ * // httpTokens: "STRING_VALUE",
64
+ * // httpPutResponseHopLimit: Number("int"),
65
+ * // },
66
+ * // tags: { // TagMap
67
+ * // "<keys>": "STRING_VALUE",
68
+ * // },
69
+ * // },
70
+ * // };
71
+ *
34
72
  * ```
35
73
  *
36
74
  * @param GetInfrastructureConfigurationCommandInput - {@link GetInfrastructureConfigurationCommandInput}
@@ -60,6 +98,8 @@ export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastr
60
98
  * @throws {@link ServiceUnavailableException} (server fault)
61
99
  * <p>The service is unable to process your request at this time.</p>
62
100
  *
101
+ * @throws {@link ImagebuilderServiceException}
102
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
103
  *
64
104
  */
65
105
  export declare class GetInfrastructureConfigurationCommand extends $Command<GetInfrastructureConfigurationCommandInput, GetInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -32,6 +32,22 @@ export interface GetWorkflowExecutionCommandOutput extends GetWorkflowExecutionR
32
32
  * };
33
33
  * const command = new GetWorkflowExecutionCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetWorkflowExecutionResponse
36
+ * // requestId: "STRING_VALUE",
37
+ * // workflowBuildVersionArn: "STRING_VALUE",
38
+ * // workflowExecutionId: "STRING_VALUE",
39
+ * // imageBuildVersionArn: "STRING_VALUE",
40
+ * // type: "BUILD" || "TEST" || "DISTRIBUTION",
41
+ * // status: "PENDING" || "SKIPPED" || "RUNNING" || "COMPLETED" || "FAILED" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_COMPLETED",
42
+ * // message: "STRING_VALUE",
43
+ * // totalStepCount: Number("int"),
44
+ * // totalStepsSucceeded: Number("int"),
45
+ * // totalStepsFailed: Number("int"),
46
+ * // totalStepsSkipped: Number("int"),
47
+ * // startTime: "STRING_VALUE",
48
+ * // endTime: "STRING_VALUE",
49
+ * // };
50
+ *
35
51
  * ```
36
52
  *
37
53
  * @param GetWorkflowExecutionCommandInput - {@link GetWorkflowExecutionCommandInput}
@@ -61,6 +77,8 @@ export interface GetWorkflowExecutionCommandOutput extends GetWorkflowExecutionR
61
77
  * @throws {@link ServiceUnavailableException} (server fault)
62
78
  * <p>The service is unable to process your request at this time.</p>
63
79
  *
80
+ * @throws {@link ImagebuilderServiceException}
81
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
64
82
  *
65
83
  */
66
84
  export declare class GetWorkflowExecutionCommand extends $Command<GetWorkflowExecutionCommandInput, GetWorkflowExecutionCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -32,6 +32,26 @@ export interface GetWorkflowStepExecutionCommandOutput extends GetWorkflowStepEx
32
32
  * };
33
33
  * const command = new GetWorkflowStepExecutionCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetWorkflowStepExecutionResponse
36
+ * // requestId: "STRING_VALUE",
37
+ * // stepExecutionId: "STRING_VALUE",
38
+ * // workflowBuildVersionArn: "STRING_VALUE",
39
+ * // workflowExecutionId: "STRING_VALUE",
40
+ * // imageBuildVersionArn: "STRING_VALUE",
41
+ * // name: "STRING_VALUE",
42
+ * // description: "STRING_VALUE",
43
+ * // action: "STRING_VALUE",
44
+ * // status: "PENDING" || "SKIPPED" || "RUNNING" || "COMPLETED" || "FAILED",
45
+ * // rollbackStatus: "RUNNING" || "COMPLETED" || "SKIPPED" || "FAILED",
46
+ * // message: "STRING_VALUE",
47
+ * // inputs: "STRING_VALUE",
48
+ * // outputs: "STRING_VALUE",
49
+ * // startTime: "STRING_VALUE",
50
+ * // endTime: "STRING_VALUE",
51
+ * // onFailure: "STRING_VALUE",
52
+ * // timeoutSeconds: Number("int"),
53
+ * // };
54
+ *
35
55
  * ```
36
56
  *
37
57
  * @param GetWorkflowStepExecutionCommandInput - {@link GetWorkflowStepExecutionCommandInput}
@@ -61,6 +81,8 @@ export interface GetWorkflowStepExecutionCommandOutput extends GetWorkflowStepEx
61
81
  * @throws {@link ServiceUnavailableException} (server fault)
62
82
  * <p>The service is unable to process your request at this time.</p>
63
83
  *
84
+ * @throws {@link ImagebuilderServiceException}
85
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
64
86
  *
65
87
  */
66
88
  export declare class GetWorkflowStepExecutionCommand extends $Command<GetWorkflowStepExecutionCommandInput, GetWorkflowStepExecutionCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -44,6 +44,12 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
44
44
  * };
45
45
  * const command = new ImportComponentCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // { // ImportComponentResponse
48
+ * // requestId: "STRING_VALUE",
49
+ * // clientToken: "STRING_VALUE",
50
+ * // componentBuildVersionArn: "STRING_VALUE",
51
+ * // };
52
+ *
47
53
  * ```
48
54
  *
49
55
  * @param ImportComponentCommandInput - {@link ImportComponentCommandInput}
@@ -88,6 +94,8 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
88
94
  * @throws {@link ServiceUnavailableException} (server fault)
89
95
  * <p>The service is unable to process your request at this time.</p>
90
96
  *
97
+ * @throws {@link ImagebuilderServiceException}
98
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
91
99
  *
92
100
  */
93
101
  export declare class ImportComponentCommand extends $Command<ImportComponentCommandInput, ImportComponentCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -47,6 +47,12 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met
47
47
  * };
48
48
  * const command = new ImportVmImageCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // ImportVmImageResponse
51
+ * // requestId: "STRING_VALUE",
52
+ * // imageArn: "STRING_VALUE",
53
+ * // clientToken: "STRING_VALUE",
54
+ * // };
55
+ *
50
56
  * ```
51
57
  *
52
58
  * @param ImportVmImageCommandInput - {@link ImportVmImageCommandInput}
@@ -67,6 +73,8 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met
67
73
  * @throws {@link ServiceUnavailableException} (server fault)
68
74
  * <p>The service is unable to process your request at this time.</p>
69
75
  *
76
+ * @throws {@link ImagebuilderServiceException}
77
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
70
78
  *
71
79
  */
72
80
  export declare class ImportVmImageCommand extends $Command<ImportVmImageCommandInput, ImportVmImageCommandOutput, ImagebuilderClientResolvedConfig> {