@aws-sdk/client-imagebuilder 3.325.0 → 3.326.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 +3 -3
@@ -33,6 +33,12 @@ export interface CancelImageCreationCommandOutput extends CancelImageCreationRes
33
33
  * };
34
34
  * const command = new CancelImageCreationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // CancelImageCreationResponse
37
+ * // requestId: "STRING_VALUE",
38
+ * // clientToken: "STRING_VALUE",
39
+ * // imageBuildVersionArn: "STRING_VALUE",
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param CancelImageCreationCommandInput - {@link CancelImageCreationCommandInput}
@@ -70,6 +76,8 @@ export interface CancelImageCreationCommandOutput extends CancelImageCreationRes
70
76
  * @throws {@link ServiceUnavailableException} (server fault)
71
77
  * <p>The service is unable to process your request at this time.</p>
72
78
  *
79
+ * @throws {@link ImagebuilderServiceException}
80
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
73
81
  *
74
82
  */
75
83
  export declare class CancelImageCreationCommand extends $Command<CancelImageCreationCommandInput, CancelImageCreationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -56,6 +56,12 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
56
56
  * };
57
57
  * const command = new CreateComponentCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // CreateComponentResponse
60
+ * // requestId: "STRING_VALUE",
61
+ * // clientToken: "STRING_VALUE",
62
+ * // componentBuildVersionArn: "STRING_VALUE",
63
+ * // };
64
+ *
59
65
  * ```
60
66
  *
61
67
  * @param CreateComponentCommandInput - {@link CreateComponentCommandInput}
@@ -105,6 +111,8 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
105
111
  * @throws {@link ServiceUnavailableException} (server fault)
106
112
  * <p>The service is unable to process your request at this time.</p>
107
113
  *
114
+ * @throws {@link ImagebuilderServiceException}
115
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
108
116
  *
109
117
  */
110
118
  export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -83,6 +83,12 @@ export interface CreateContainerRecipeCommandOutput extends CreateContainerRecip
83
83
  * };
84
84
  * const command = new CreateContainerRecipeCommand(input);
85
85
  * const response = await client.send(command);
86
+ * // { // CreateContainerRecipeResponse
87
+ * // requestId: "STRING_VALUE",
88
+ * // clientToken: "STRING_VALUE",
89
+ * // containerRecipeArn: "STRING_VALUE",
90
+ * // };
91
+ *
86
92
  * ```
87
93
  *
88
94
  * @param CreateContainerRecipeCommandInput - {@link CreateContainerRecipeCommandInput}
@@ -131,6 +137,8 @@ export interface CreateContainerRecipeCommandOutput extends CreateContainerRecip
131
137
  * @throws {@link ServiceUnavailableException} (server fault)
132
138
  * <p>The service is unable to process your request at this time.</p>
133
139
  *
140
+ * @throws {@link ImagebuilderServiceException}
141
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
134
142
  *
135
143
  */
136
144
  export declare class CreateContainerRecipeCommand extends $Command<CreateContainerRecipeCommandInput, CreateContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -108,6 +108,12 @@ export interface CreateDistributionConfigurationCommandOutput extends CreateDist
108
108
  * };
109
109
  * const command = new CreateDistributionConfigurationCommand(input);
110
110
  * const response = await client.send(command);
111
+ * // { // CreateDistributionConfigurationResponse
112
+ * // requestId: "STRING_VALUE",
113
+ * // clientToken: "STRING_VALUE",
114
+ * // distributionConfigurationArn: "STRING_VALUE",
115
+ * // };
116
+ *
111
117
  * ```
112
118
  *
113
119
  * @param CreateDistributionConfigurationCommandInput - {@link CreateDistributionConfigurationCommandInput}
@@ -157,6 +163,8 @@ export interface CreateDistributionConfigurationCommandOutput extends CreateDist
157
163
  * @throws {@link ServiceUnavailableException} (server fault)
158
164
  * <p>The service is unable to process your request at this time.</p>
159
165
  *
166
+ * @throws {@link ImagebuilderServiceException}
167
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
160
168
  *
161
169
  */
162
170
  export declare class CreateDistributionConfigurationCommand extends $Command<CreateDistributionConfigurationCommandInput, CreateDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -55,6 +55,12 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat
55
55
  * };
56
56
  * const command = new CreateImageCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // CreateImageResponse
59
+ * // requestId: "STRING_VALUE",
60
+ * // clientToken: "STRING_VALUE",
61
+ * // imageBuildVersionArn: "STRING_VALUE",
62
+ * // };
63
+ *
58
64
  * ```
59
65
  *
60
66
  * @param CreateImageCommandInput - {@link CreateImageCommandInput}
@@ -97,6 +103,8 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat
97
103
  * @throws {@link ServiceUnavailableException} (server fault)
98
104
  * <p>The service is unable to process your request at this time.</p>
99
105
  *
106
+ * @throws {@link ImagebuilderServiceException}
107
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
100
108
  *
101
109
  */
102
110
  export declare class CreateImageCommand extends $Command<CreateImageCommandInput, CreateImageCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -61,6 +61,12 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes
61
61
  * };
62
62
  * const command = new CreateImagePipelineCommand(input);
63
63
  * const response = await client.send(command);
64
+ * // { // CreateImagePipelineResponse
65
+ * // requestId: "STRING_VALUE",
66
+ * // clientToken: "STRING_VALUE",
67
+ * // imagePipelineArn: "STRING_VALUE",
68
+ * // };
69
+ *
64
70
  * ```
65
71
  *
66
72
  * @param CreateImagePipelineCommandInput - {@link CreateImagePipelineCommandInput}
@@ -106,6 +112,8 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes
106
112
  * @throws {@link ServiceUnavailableException} (server fault)
107
113
  * <p>The service is unable to process your request at this time.</p>
108
114
  *
115
+ * @throws {@link ImagebuilderServiceException}
116
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
109
117
  *
110
118
  */
111
119
  export declare class CreateImagePipelineCommand extends $Command<CreateImagePipelineCommandInput, CreateImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -76,6 +76,12 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
76
76
  * };
77
77
  * const command = new CreateImageRecipeCommand(input);
78
78
  * const response = await client.send(command);
79
+ * // { // CreateImageRecipeResponse
80
+ * // requestId: "STRING_VALUE",
81
+ * // clientToken: "STRING_VALUE",
82
+ * // imageRecipeArn: "STRING_VALUE",
83
+ * // };
84
+ *
79
85
  * ```
80
86
  *
81
87
  * @param CreateImageRecipeCommandInput - {@link CreateImageRecipeCommandInput}
@@ -124,6 +130,8 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
124
130
  * @throws {@link ServiceUnavailableException} (server fault)
125
131
  * <p>The service is unable to process your request at this time.</p>
126
132
  *
133
+ * @throws {@link ImagebuilderServiceException}
134
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
127
135
  *
128
136
  */
129
137
  export declare class CreateImageRecipeCommand extends $Command<CreateImageRecipeCommandInput, CreateImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -61,6 +61,12 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
61
61
  * };
62
62
  * const command = new CreateInfrastructureConfigurationCommand(input);
63
63
  * const response = await client.send(command);
64
+ * // { // CreateInfrastructureConfigurationResponse
65
+ * // requestId: "STRING_VALUE",
66
+ * // clientToken: "STRING_VALUE",
67
+ * // infrastructureConfigurationArn: "STRING_VALUE",
68
+ * // };
69
+ *
64
70
  * ```
65
71
  *
66
72
  * @param CreateInfrastructureConfigurationCommandInput - {@link CreateInfrastructureConfigurationCommandInput}
@@ -106,6 +112,8 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
106
112
  * @throws {@link ServiceUnavailableException} (server fault)
107
113
  * <p>The service is unable to process your request at this time.</p>
108
114
  *
115
+ * @throws {@link ImagebuilderServiceException}
116
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
109
117
  *
110
118
  */
111
119
  export declare class CreateInfrastructureConfigurationCommand extends $Command<CreateInfrastructureConfigurationCommandInput, CreateInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
31
31
  * };
32
32
  * const command = new DeleteComponentCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteComponentResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // componentBuildVersionArn: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param DeleteComponentCommandInput - {@link DeleteComponentCommandInput}
@@ -64,6 +69,8 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
64
69
  * @throws {@link ServiceUnavailableException} (server fault)
65
70
  * <p>The service is unable to process your request at this time.</p>
66
71
  *
72
+ * @throws {@link ImagebuilderServiceException}
73
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
67
74
  *
68
75
  */
69
76
  export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip
31
31
  * };
32
32
  * const command = new DeleteContainerRecipeCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteContainerRecipeResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // containerRecipeArn: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param DeleteContainerRecipeCommandInput - {@link DeleteContainerRecipeCommandInput}
@@ -64,6 +69,8 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip
64
69
  * @throws {@link ServiceUnavailableException} (server fault)
65
70
  * <p>The service is unable to process your request at this time.</p>
66
71
  *
72
+ * @throws {@link ImagebuilderServiceException}
73
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
67
74
  *
68
75
  */
69
76
  export declare class DeleteContainerRecipeCommand extends $Command<DeleteContainerRecipeCommandInput, DeleteContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface DeleteDistributionConfigurationCommandOutput extends DeleteDist
31
31
  * };
32
32
  * const command = new DeleteDistributionConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteDistributionConfigurationResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // distributionConfigurationArn: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param DeleteDistributionConfigurationCommandInput - {@link DeleteDistributionConfigurationCommandInput}
@@ -64,6 +69,8 @@ export interface DeleteDistributionConfigurationCommandOutput extends DeleteDist
64
69
  * @throws {@link ServiceUnavailableException} (server fault)
65
70
  * <p>The service is unable to process your request at this time.</p>
66
71
  *
72
+ * @throws {@link ImagebuilderServiceException}
73
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
67
74
  *
68
75
  */
69
76
  export declare class DeleteDistributionConfigurationCommand extends $Command<DeleteDistributionConfigurationCommandInput, DeleteDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -52,6 +52,11 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat
52
52
  * };
53
53
  * const command = new DeleteImageCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // DeleteImageResponse
56
+ * // requestId: "STRING_VALUE",
57
+ * // imageBuildVersionArn: "STRING_VALUE",
58
+ * // };
59
+ *
55
60
  * ```
56
61
  *
57
62
  * @param DeleteImageCommandInput - {@link DeleteImageCommandInput}
@@ -85,6 +90,8 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat
85
90
  * @throws {@link ServiceUnavailableException} (server fault)
86
91
  * <p>The service is unable to process your request at this time.</p>
87
92
  *
93
+ * @throws {@link ImagebuilderServiceException}
94
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
88
95
  *
89
96
  */
90
97
  export declare class DeleteImageCommand extends $Command<DeleteImageCommandInput, DeleteImageCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes
31
31
  * };
32
32
  * const command = new DeleteImagePipelineCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteImagePipelineResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // imagePipelineArn: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param DeleteImagePipelineCommandInput - {@link DeleteImagePipelineCommandInput}
@@ -64,6 +69,8 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes
64
69
  * @throws {@link ServiceUnavailableException} (server fault)
65
70
  * <p>The service is unable to process your request at this time.</p>
66
71
  *
72
+ * @throws {@link ImagebuilderServiceException}
73
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
67
74
  *
68
75
  */
69
76
  export declare class DeleteImagePipelineCommand extends $Command<DeleteImagePipelineCommandInput, DeleteImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons
31
31
  * };
32
32
  * const command = new DeleteImageRecipeCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteImageRecipeResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // imageRecipeArn: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param DeleteImageRecipeCommandInput - {@link DeleteImageRecipeCommandInput}
@@ -64,6 +69,8 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons
64
69
  * @throws {@link ServiceUnavailableException} (server fault)
65
70
  * <p>The service is unable to process your request at this time.</p>
66
71
  *
72
+ * @throws {@link ImagebuilderServiceException}
73
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
67
74
  *
68
75
  */
69
76
  export declare class DeleteImageRecipeCommand extends $Command<DeleteImageRecipeCommandInput, DeleteImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteIn
31
31
  * };
32
32
  * const command = new DeleteInfrastructureConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteInfrastructureConfigurationResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // infrastructureConfigurationArn: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param DeleteInfrastructureConfigurationCommandInput - {@link DeleteInfrastructureConfigurationCommandInput}
@@ -64,6 +69,8 @@ export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteIn
64
69
  * @throws {@link ServiceUnavailableException} (server fault)
65
70
  * <p>The service is unable to process your request at this time.</p>
66
71
  *
72
+ * @throws {@link ImagebuilderServiceException}
73
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
67
74
  *
68
75
  */
69
76
  export declare class DeleteInfrastructureConfigurationCommand extends $Command<DeleteInfrastructureConfigurationCommandInput, DeleteInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,46 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
31
31
  * };
32
32
  * const command = new GetComponentCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetComponentResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // component: { // Component
37
+ * // arn: "STRING_VALUE",
38
+ * // name: "STRING_VALUE",
39
+ * // version: "STRING_VALUE",
40
+ * // description: "STRING_VALUE",
41
+ * // changeDescription: "STRING_VALUE",
42
+ * // type: "BUILD" || "TEST",
43
+ * // platform: "Windows" || "Linux",
44
+ * // supportedOsVersions: [ // OsVersionList
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // state: { // ComponentState
48
+ * // status: "DEPRECATED",
49
+ * // reason: "STRING_VALUE",
50
+ * // },
51
+ * // parameters: [ // ComponentParameterDetailList
52
+ * // { // ComponentParameterDetail
53
+ * // name: "STRING_VALUE", // required
54
+ * // type: "STRING_VALUE", // required
55
+ * // defaultValue: [ // ComponentParameterValueList
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // description: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // owner: "STRING_VALUE",
62
+ * // data: "STRING_VALUE",
63
+ * // kmsKeyId: "STRING_VALUE",
64
+ * // encrypted: true || false,
65
+ * // dateCreated: "STRING_VALUE",
66
+ * // tags: { // TagMap
67
+ * // "<keys>": "STRING_VALUE",
68
+ * // },
69
+ * // publisher: "STRING_VALUE",
70
+ * // obfuscate: true || false,
71
+ * // },
72
+ * // };
73
+ *
34
74
  * ```
35
75
  *
36
76
  * @param GetComponentCommandInput - {@link GetComponentCommandInput}
@@ -60,6 +100,8 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
60
100
  * @throws {@link ServiceUnavailableException} (server fault)
61
101
  * <p>The service is unable to process your request at this time.</p>
62
102
  *
103
+ * @throws {@link ImagebuilderServiceException}
104
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
105
  *
64
106
  */
65
107
  export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface GetComponentPolicyCommandOutput extends GetComponentPolicyRespo
31
31
  * };
32
32
  * const command = new GetComponentPolicyCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetComponentPolicyResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // policy: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param GetComponentPolicyCommandInput - {@link GetComponentPolicyCommandInput}
@@ -58,6 +63,8 @@ export interface GetComponentPolicyCommandOutput extends GetComponentPolicyRespo
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 GetComponentPolicyCommand extends $Command<GetComponentPolicyCommandInput, GetComponentPolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,65 @@ export interface GetContainerRecipeCommandOutput extends GetContainerRecipeRespo
31
31
  * };
32
32
  * const command = new GetContainerRecipeCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetContainerRecipeResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // containerRecipe: { // ContainerRecipe
37
+ * // arn: "STRING_VALUE",
38
+ * // containerType: "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
+ * // instanceConfiguration: { // InstanceConfiguration
58
+ * // image: "STRING_VALUE",
59
+ * // blockDeviceMappings: [ // InstanceBlockDeviceMappings
60
+ * // { // InstanceBlockDeviceMapping
61
+ * // deviceName: "STRING_VALUE",
62
+ * // ebs: { // EbsInstanceBlockDeviceSpecification
63
+ * // encrypted: true || false,
64
+ * // deleteOnTermination: true || false,
65
+ * // iops: Number("int"),
66
+ * // kmsKeyId: "STRING_VALUE",
67
+ * // snapshotId: "STRING_VALUE",
68
+ * // volumeSize: Number("int"),
69
+ * // volumeType: "standard" || "io1" || "io2" || "gp2" || "gp3" || "sc1" || "st1",
70
+ * // throughput: Number("int"),
71
+ * // },
72
+ * // virtualName: "STRING_VALUE",
73
+ * // noDevice: "STRING_VALUE",
74
+ * // },
75
+ * // ],
76
+ * // },
77
+ * // dockerfileTemplateData: "STRING_VALUE",
78
+ * // kmsKeyId: "STRING_VALUE",
79
+ * // encrypted: true || false,
80
+ * // parentImage: "STRING_VALUE",
81
+ * // dateCreated: "STRING_VALUE",
82
+ * // tags: { // TagMap
83
+ * // "<keys>": "STRING_VALUE",
84
+ * // },
85
+ * // workingDirectory: "STRING_VALUE",
86
+ * // targetRepository: { // TargetContainerRepository
87
+ * // service: "ECR", // required
88
+ * // repositoryName: "STRING_VALUE", // required
89
+ * // },
90
+ * // },
91
+ * // };
92
+ *
34
93
  * ```
35
94
  *
36
95
  * @param GetContainerRecipeCommandInput - {@link GetContainerRecipeCommandInput}
@@ -60,6 +119,8 @@ export interface GetContainerRecipeCommandOutput extends GetContainerRecipeRespo
60
119
  * @throws {@link ServiceUnavailableException} (server fault)
61
120
  * <p>The service is unable to process your request at this time.</p>
62
121
  *
122
+ * @throws {@link ImagebuilderServiceException}
123
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
124
  *
64
125
  */
65
126
  export declare class GetContainerRecipeCommand extends $Command<GetContainerRecipeCommandInput, GetContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecip
31
31
  * };
32
32
  * const command = new GetContainerRecipePolicyCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetContainerRecipePolicyResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // policy: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param GetContainerRecipePolicyCommandInput - {@link GetContainerRecipePolicyCommandInput}
@@ -58,6 +63,8 @@ export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecip
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 GetContainerRecipePolicyCommand extends $Command<GetContainerRecipePolicyCommandInput, GetContainerRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -31,6 +31,92 @@ export interface GetDistributionConfigurationCommandOutput extends GetDistributi
31
31
  * };
32
32
  * const command = new GetDistributionConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetDistributionConfigurationResponse
35
+ * // requestId: "STRING_VALUE",
36
+ * // distributionConfiguration: { // DistributionConfiguration
37
+ * // arn: "STRING_VALUE",
38
+ * // name: "STRING_VALUE",
39
+ * // description: "STRING_VALUE",
40
+ * // distributions: [ // DistributionList
41
+ * // { // Distribution
42
+ * // region: "STRING_VALUE", // required
43
+ * // amiDistributionConfiguration: { // AmiDistributionConfiguration
44
+ * // name: "STRING_VALUE",
45
+ * // description: "STRING_VALUE",
46
+ * // targetAccountIds: [ // AccountList
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // amiTags: { // TagMap
50
+ * // "<keys>": "STRING_VALUE",
51
+ * // },
52
+ * // kmsKeyId: "STRING_VALUE",
53
+ * // launchPermission: { // LaunchPermissionConfiguration
54
+ * // userIds: [
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // userGroups: [ // StringList
58
+ * // "STRING_VALUE",
59
+ * // ],
60
+ * // organizationArns: [ // OrganizationArnList
61
+ * // "STRING_VALUE",
62
+ * // ],
63
+ * // organizationalUnitArns: [ // OrganizationalUnitArnList
64
+ * // "STRING_VALUE",
65
+ * // ],
66
+ * // },
67
+ * // },
68
+ * // containerDistributionConfiguration: { // ContainerDistributionConfiguration
69
+ * // description: "STRING_VALUE",
70
+ * // containerTags: [
71
+ * // "STRING_VALUE",
72
+ * // ],
73
+ * // targetRepository: { // TargetContainerRepository
74
+ * // service: "ECR", // required
75
+ * // repositoryName: "STRING_VALUE", // required
76
+ * // },
77
+ * // },
78
+ * // licenseConfigurationArns: [ // LicenseConfigurationArnList
79
+ * // "STRING_VALUE",
80
+ * // ],
81
+ * // launchTemplateConfigurations: [ // LaunchTemplateConfigurationList
82
+ * // { // LaunchTemplateConfiguration
83
+ * // launchTemplateId: "STRING_VALUE", // required
84
+ * // accountId: "STRING_VALUE",
85
+ * // setDefaultVersion: true || false,
86
+ * // },
87
+ * // ],
88
+ * // s3ExportConfiguration: { // S3ExportConfiguration
89
+ * // roleName: "STRING_VALUE", // required
90
+ * // diskImageFormat: "VMDK" || "RAW" || "VHD", // required
91
+ * // s3Bucket: "STRING_VALUE", // required
92
+ * // s3Prefix: "STRING_VALUE",
93
+ * // },
94
+ * // fastLaunchConfigurations: [ // FastLaunchConfigurationList
95
+ * // { // FastLaunchConfiguration
96
+ * // enabled: true || false, // required
97
+ * // snapshotConfiguration: { // FastLaunchSnapshotConfiguration
98
+ * // targetResourceCount: Number("int"),
99
+ * // },
100
+ * // maxParallelLaunches: Number("int"),
101
+ * // launchTemplate: { // FastLaunchLaunchTemplateSpecification
102
+ * // launchTemplateId: "STRING_VALUE",
103
+ * // launchTemplateName: "STRING_VALUE",
104
+ * // launchTemplateVersion: "STRING_VALUE",
105
+ * // },
106
+ * // accountId: "STRING_VALUE",
107
+ * // },
108
+ * // ],
109
+ * // },
110
+ * // ],
111
+ * // timeoutMinutes: Number("int"), // required
112
+ * // dateCreated: "STRING_VALUE",
113
+ * // dateUpdated: "STRING_VALUE",
114
+ * // tags: {
115
+ * // "<keys>": "STRING_VALUE",
116
+ * // },
117
+ * // },
118
+ * // };
119
+ *
34
120
  * ```
35
121
  *
36
122
  * @param GetDistributionConfigurationCommandInput - {@link GetDistributionConfigurationCommandInput}
@@ -60,6 +146,8 @@ export interface GetDistributionConfigurationCommandOutput extends GetDistributi
60
146
  * @throws {@link ServiceUnavailableException} (server fault)
61
147
  * <p>The service is unable to process your request at this time.</p>
62
148
  *
149
+ * @throws {@link ImagebuilderServiceException}
150
+ * <p>Base exception class for all service exceptions from Imagebuilder service.</p>
63
151
  *
64
152
  */
65
153
  export declare class GetDistributionConfigurationCommand extends $Command<GetDistributionConfigurationCommandInput, GetDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {