aws-sdk 2.1346.0 → 2.1347.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.
- package/CHANGELOG.md +19 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +72 -0
- package/apis/autoscaling-2011-01-01.min.json +13 -5
- package/apis/autoscaling-2011-01-01.paginators.json +5 -0
- package/apis/batch-2016-08-10.min.json +4 -1
- package/apis/compute-optimizer-2019-11-01.min.json +15 -11
- package/apis/drs-2020-02-26.min.json +21 -2
- package/apis/ec2-2016-11-15.min.json +754 -660
- package/apis/elasticmapreduce-2009-03-31.min.json +82 -66
- package/apis/glue-2017-03-31.min.json +0 -1
- package/apis/guardduty-2017-11-28.min.json +590 -111
- package/apis/guardduty-2017-11-28.paginators.json +6 -0
- package/apis/imagebuilder-2019-12-02.min.json +546 -75
- package/apis/imagebuilder-2019-12-02.paginators.json +23 -0
- package/apis/ivs-2020-07-14.min.json +58 -46
- package/apis/kendra-2019-02-03.min.json +494 -240
- package/apis/metadata.json +4 -0
- package/apis/network-firewall-2020-11-12.min.json +238 -9
- package/apis/network-firewall-2020-11-12.paginators.json +6 -0
- package/apis/sagemaker-geospatial-2020-05-27.min.json +135 -107
- package/apis/vpc-lattice-2022-11-30.examples.json +5 -0
- package/apis/vpc-lattice-2022-11-30.min.json +2363 -0
- package/apis/vpc-lattice-2022-11-30.paginators.json +58 -0
- package/apis/wellarchitected-2020-03-31.min.json +125 -21
- package/apis/wellarchitected-2020-03-31.paginators.json +5 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/autoscaling.d.ts +63 -36
- package/clients/batch.d.ts +13 -0
- package/clients/computeoptimizer.d.ts +13 -3
- package/clients/drs.d.ts +25 -5
- package/clients/ec2.d.ts +112 -1
- package/clients/emr.d.ts +20 -0
- package/clients/glue.d.ts +0 -4
- package/clients/guardduty.d.ts +491 -8
- package/clients/imagebuilder.d.ts +931 -128
- package/clients/ivs.d.ts +17 -0
- package/clients/kendra.d.ts +424 -75
- package/clients/networkfirewall.d.ts +289 -0
- package/clients/sagemakergeospatial.d.ts +183 -147
- package/clients/vpclattice.d.ts +2772 -0
- package/clients/vpclattice.js +18 -0
- package/clients/wellarchitected.d.ts +125 -34
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +60 -23
- package/dist/aws-sdk.js +861 -734
- package/dist/aws-sdk.min.js +97 -96
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -44,43 +44,43 @@ declare class Imagebuilder extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
createDistributionConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.CreateDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.CreateDistributionConfigurationResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Creates a new image. This request will create a new image along with all of the configured output resources defined in the distribution configuration. You must specify exactly one recipe for your image, using either a ContainerRecipeArn or an ImageRecipeArn.
|
|
48
48
|
*/
|
|
49
49
|
createImage(params: Imagebuilder.Types.CreateImageRequest, callback?: (err: AWSError, data: Imagebuilder.Types.CreateImageResponse) => void): Request<Imagebuilder.Types.CreateImageResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* Creates a new image. This request will create a new image along with all of the configured output resources defined in the distribution configuration. You must specify exactly one recipe for your image, using either a ContainerRecipeArn or an ImageRecipeArn.
|
|
52
52
|
*/
|
|
53
53
|
createImage(callback?: (err: AWSError, data: Imagebuilder.Types.CreateImageResponse) => void): Request<Imagebuilder.Types.CreateImageResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Creates a new image pipeline. Image pipelines enable you to automate the creation and distribution of images.
|
|
56
56
|
*/
|
|
57
57
|
createImagePipeline(params: Imagebuilder.Types.CreateImagePipelineRequest, callback?: (err: AWSError, data: Imagebuilder.Types.CreateImagePipelineResponse) => void): Request<Imagebuilder.Types.CreateImagePipelineResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Creates a new image pipeline. Image pipelines enable you to automate the creation and distribution of images.
|
|
60
60
|
*/
|
|
61
61
|
createImagePipeline(callback?: (err: AWSError, data: Imagebuilder.Types.CreateImagePipelineResponse) => void): Request<Imagebuilder.Types.CreateImagePipelineResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* Creates a new image recipe. Image recipes define how images are configured, tested, and assessed.
|
|
64
64
|
*/
|
|
65
65
|
createImageRecipe(params: Imagebuilder.Types.CreateImageRecipeRequest, callback?: (err: AWSError, data: Imagebuilder.Types.CreateImageRecipeResponse) => void): Request<Imagebuilder.Types.CreateImageRecipeResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Creates a new image recipe. Image recipes define how images are configured, tested, and assessed.
|
|
68
68
|
*/
|
|
69
69
|
createImageRecipe(callback?: (err: AWSError, data: Imagebuilder.Types.CreateImageRecipeResponse) => void): Request<Imagebuilder.Types.CreateImageRecipeResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Creates a new infrastructure configuration. An infrastructure configuration defines the environment in which your image will be built and tested.
|
|
72
72
|
*/
|
|
73
73
|
createInfrastructureConfiguration(params: Imagebuilder.Types.CreateInfrastructureConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.CreateInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.CreateInfrastructureConfigurationResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Creates a new infrastructure configuration. An infrastructure configuration defines the environment in which your image will be built and tested.
|
|
76
76
|
*/
|
|
77
77
|
createInfrastructureConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.CreateInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.CreateInfrastructureConfigurationResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* Deletes a component build version.
|
|
80
80
|
*/
|
|
81
81
|
deleteComponent(params: Imagebuilder.Types.DeleteComponentRequest, callback?: (err: AWSError, data: Imagebuilder.Types.DeleteComponentResponse) => void): Request<Imagebuilder.Types.DeleteComponentResponse, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* Deletes a component build version.
|
|
84
84
|
*/
|
|
85
85
|
deleteComponent(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteComponentResponse) => void): Request<Imagebuilder.Types.DeleteComponentResponse, AWSError>;
|
|
86
86
|
/**
|
|
@@ -92,11 +92,11 @@ declare class Imagebuilder extends Service {
|
|
|
92
92
|
*/
|
|
93
93
|
deleteContainerRecipe(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteContainerRecipeResponse) => void): Request<Imagebuilder.Types.DeleteContainerRecipeResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
95
|
+
* Deletes a distribution configuration.
|
|
96
96
|
*/
|
|
97
97
|
deleteDistributionConfiguration(params: Imagebuilder.Types.DeleteDistributionConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.DeleteDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.DeleteDistributionConfigurationResponse, AWSError>;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
99
|
+
* Deletes a distribution configuration.
|
|
100
100
|
*/
|
|
101
101
|
deleteDistributionConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.DeleteDistributionConfigurationResponse, AWSError>;
|
|
102
102
|
/**
|
|
@@ -108,43 +108,43 @@ declare class Imagebuilder extends Service {
|
|
|
108
108
|
*/
|
|
109
109
|
deleteImage(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteImageResponse) => void): Request<Imagebuilder.Types.DeleteImageResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Deletes an image pipeline.
|
|
112
112
|
*/
|
|
113
113
|
deleteImagePipeline(params: Imagebuilder.Types.DeleteImagePipelineRequest, callback?: (err: AWSError, data: Imagebuilder.Types.DeleteImagePipelineResponse) => void): Request<Imagebuilder.Types.DeleteImagePipelineResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* Deletes an image pipeline.
|
|
116
116
|
*/
|
|
117
117
|
deleteImagePipeline(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteImagePipelineResponse) => void): Request<Imagebuilder.Types.DeleteImagePipelineResponse, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* Deletes an image recipe.
|
|
120
120
|
*/
|
|
121
121
|
deleteImageRecipe(params: Imagebuilder.Types.DeleteImageRecipeRequest, callback?: (err: AWSError, data: Imagebuilder.Types.DeleteImageRecipeResponse) => void): Request<Imagebuilder.Types.DeleteImageRecipeResponse, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* Deletes an image recipe.
|
|
124
124
|
*/
|
|
125
125
|
deleteImageRecipe(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteImageRecipeResponse) => void): Request<Imagebuilder.Types.DeleteImageRecipeResponse, AWSError>;
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* Deletes an infrastructure configuration.
|
|
128
128
|
*/
|
|
129
129
|
deleteInfrastructureConfiguration(params: Imagebuilder.Types.DeleteInfrastructureConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.DeleteInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.DeleteInfrastructureConfigurationResponse, AWSError>;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* Deletes an infrastructure configuration.
|
|
132
132
|
*/
|
|
133
133
|
deleteInfrastructureConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.DeleteInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.DeleteInfrastructureConfigurationResponse, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
*
|
|
135
|
+
* Gets a component object.
|
|
136
136
|
*/
|
|
137
137
|
getComponent(params: Imagebuilder.Types.GetComponentRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetComponentResponse) => void): Request<Imagebuilder.Types.GetComponentResponse, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
*
|
|
139
|
+
* Gets a component object.
|
|
140
140
|
*/
|
|
141
141
|
getComponent(callback?: (err: AWSError, data: Imagebuilder.Types.GetComponentResponse) => void): Request<Imagebuilder.Types.GetComponentResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
*
|
|
143
|
+
* Gets a component policy.
|
|
144
144
|
*/
|
|
145
145
|
getComponentPolicy(params: Imagebuilder.Types.GetComponentPolicyRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetComponentPolicyResponse) => void): Request<Imagebuilder.Types.GetComponentPolicyResponse, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Gets a component policy.
|
|
148
148
|
*/
|
|
149
149
|
getComponentPolicy(callback?: (err: AWSError, data: Imagebuilder.Types.GetComponentPolicyResponse) => void): Request<Imagebuilder.Types.GetComponentPolicyResponse, AWSError>;
|
|
150
150
|
/**
|
|
@@ -164,61 +164,77 @@ declare class Imagebuilder extends Service {
|
|
|
164
164
|
*/
|
|
165
165
|
getContainerRecipePolicy(callback?: (err: AWSError, data: Imagebuilder.Types.GetContainerRecipePolicyResponse) => void): Request<Imagebuilder.Types.GetContainerRecipePolicyResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Gets a distribution configuration.
|
|
168
168
|
*/
|
|
169
169
|
getDistributionConfiguration(params: Imagebuilder.Types.GetDistributionConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.GetDistributionConfigurationResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* Gets a distribution configuration.
|
|
172
172
|
*/
|
|
173
173
|
getDistributionConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.GetDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.GetDistributionConfigurationResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* Gets an image.
|
|
176
176
|
*/
|
|
177
177
|
getImage(params: Imagebuilder.Types.GetImageRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetImageResponse) => void): Request<Imagebuilder.Types.GetImageResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* Gets an image.
|
|
180
180
|
*/
|
|
181
181
|
getImage(callback?: (err: AWSError, data: Imagebuilder.Types.GetImageResponse) => void): Request<Imagebuilder.Types.GetImageResponse, AWSError>;
|
|
182
182
|
/**
|
|
183
|
-
*
|
|
183
|
+
* Gets an image pipeline.
|
|
184
184
|
*/
|
|
185
185
|
getImagePipeline(params: Imagebuilder.Types.GetImagePipelineRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetImagePipelineResponse) => void): Request<Imagebuilder.Types.GetImagePipelineResponse, AWSError>;
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* Gets an image pipeline.
|
|
188
188
|
*/
|
|
189
189
|
getImagePipeline(callback?: (err: AWSError, data: Imagebuilder.Types.GetImagePipelineResponse) => void): Request<Imagebuilder.Types.GetImagePipelineResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* Gets an image policy.
|
|
192
192
|
*/
|
|
193
193
|
getImagePolicy(params: Imagebuilder.Types.GetImagePolicyRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetImagePolicyResponse) => void): Request<Imagebuilder.Types.GetImagePolicyResponse, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* Gets an image policy.
|
|
196
196
|
*/
|
|
197
197
|
getImagePolicy(callback?: (err: AWSError, data: Imagebuilder.Types.GetImagePolicyResponse) => void): Request<Imagebuilder.Types.GetImagePolicyResponse, AWSError>;
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* Gets an image recipe.
|
|
200
200
|
*/
|
|
201
201
|
getImageRecipe(params: Imagebuilder.Types.GetImageRecipeRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetImageRecipeResponse) => void): Request<Imagebuilder.Types.GetImageRecipeResponse, AWSError>;
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* Gets an image recipe.
|
|
204
204
|
*/
|
|
205
205
|
getImageRecipe(callback?: (err: AWSError, data: Imagebuilder.Types.GetImageRecipeResponse) => void): Request<Imagebuilder.Types.GetImageRecipeResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
*
|
|
207
|
+
* Gets an image recipe policy.
|
|
208
208
|
*/
|
|
209
209
|
getImageRecipePolicy(params: Imagebuilder.Types.GetImageRecipePolicyRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetImageRecipePolicyResponse) => void): Request<Imagebuilder.Types.GetImageRecipePolicyResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
*
|
|
211
|
+
* Gets an image recipe policy.
|
|
212
212
|
*/
|
|
213
213
|
getImageRecipePolicy(callback?: (err: AWSError, data: Imagebuilder.Types.GetImageRecipePolicyResponse) => void): Request<Imagebuilder.Types.GetImageRecipePolicyResponse, AWSError>;
|
|
214
214
|
/**
|
|
215
|
-
*
|
|
215
|
+
* Gets an infrastructure configuration.
|
|
216
216
|
*/
|
|
217
217
|
getInfrastructureConfiguration(params: Imagebuilder.Types.GetInfrastructureConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.GetInfrastructureConfigurationResponse, AWSError>;
|
|
218
218
|
/**
|
|
219
|
-
*
|
|
219
|
+
* Gets an infrastructure configuration.
|
|
220
220
|
*/
|
|
221
221
|
getInfrastructureConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.GetInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.GetInfrastructureConfigurationResponse, AWSError>;
|
|
222
|
+
/**
|
|
223
|
+
* Get the runtime information that was logged for a specific runtime instance of the workflow.
|
|
224
|
+
*/
|
|
225
|
+
getWorkflowExecution(params: Imagebuilder.Types.GetWorkflowExecutionRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetWorkflowExecutionResponse) => void): Request<Imagebuilder.Types.GetWorkflowExecutionResponse, AWSError>;
|
|
226
|
+
/**
|
|
227
|
+
* Get the runtime information that was logged for a specific runtime instance of the workflow.
|
|
228
|
+
*/
|
|
229
|
+
getWorkflowExecution(callback?: (err: AWSError, data: Imagebuilder.Types.GetWorkflowExecutionResponse) => void): Request<Imagebuilder.Types.GetWorkflowExecutionResponse, AWSError>;
|
|
230
|
+
/**
|
|
231
|
+
* Get the runtime information that was logged for a specific runtime instance of the workflow step.
|
|
232
|
+
*/
|
|
233
|
+
getWorkflowStepExecution(params: Imagebuilder.Types.GetWorkflowStepExecutionRequest, callback?: (err: AWSError, data: Imagebuilder.Types.GetWorkflowStepExecutionResponse) => void): Request<Imagebuilder.Types.GetWorkflowStepExecutionResponse, AWSError>;
|
|
234
|
+
/**
|
|
235
|
+
* Get the runtime information that was logged for a specific runtime instance of the workflow step.
|
|
236
|
+
*/
|
|
237
|
+
getWorkflowStepExecution(callback?: (err: AWSError, data: Imagebuilder.Types.GetWorkflowStepExecutionResponse) => void): Request<Imagebuilder.Types.GetWorkflowStepExecutionResponse, AWSError>;
|
|
222
238
|
/**
|
|
223
239
|
* Imports a component and transforms its data into a component document.
|
|
224
240
|
*/
|
|
@@ -236,11 +252,11 @@ declare class Imagebuilder extends Service {
|
|
|
236
252
|
*/
|
|
237
253
|
importVmImage(callback?: (err: AWSError, data: Imagebuilder.Types.ImportVmImageResponse) => void): Request<Imagebuilder.Types.ImportVmImageResponse, AWSError>;
|
|
238
254
|
/**
|
|
239
|
-
*
|
|
255
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
240
256
|
*/
|
|
241
257
|
listComponentBuildVersions(params: Imagebuilder.Types.ListComponentBuildVersionsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListComponentBuildVersionsResponse, AWSError>;
|
|
242
258
|
/**
|
|
243
|
-
*
|
|
259
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
244
260
|
*/
|
|
245
261
|
listComponentBuildVersions(callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListComponentBuildVersionsResponse, AWSError>;
|
|
246
262
|
/**
|
|
@@ -268,11 +284,11 @@ declare class Imagebuilder extends Service {
|
|
|
268
284
|
*/
|
|
269
285
|
listDistributionConfigurations(callback?: (err: AWSError, data: Imagebuilder.Types.ListDistributionConfigurationsResponse) => void): Request<Imagebuilder.Types.ListDistributionConfigurationsResponse, AWSError>;
|
|
270
286
|
/**
|
|
271
|
-
*
|
|
287
|
+
* Returns a list of image build versions.
|
|
272
288
|
*/
|
|
273
289
|
listImageBuildVersions(params: Imagebuilder.Types.ListImageBuildVersionsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListImageBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListImageBuildVersionsResponse, AWSError>;
|
|
274
290
|
/**
|
|
275
|
-
*
|
|
291
|
+
* Returns a list of image build versions.
|
|
276
292
|
*/
|
|
277
293
|
listImageBuildVersions(callback?: (err: AWSError, data: Imagebuilder.Types.ListImageBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListImageBuildVersionsResponse, AWSError>;
|
|
278
294
|
/**
|
|
@@ -300,13 +316,29 @@ declare class Imagebuilder extends Service {
|
|
|
300
316
|
*/
|
|
301
317
|
listImagePipelines(callback?: (err: AWSError, data: Imagebuilder.Types.ListImagePipelinesResponse) => void): Request<Imagebuilder.Types.ListImagePipelinesResponse, AWSError>;
|
|
302
318
|
/**
|
|
303
|
-
*
|
|
319
|
+
* Returns a list of image recipes.
|
|
304
320
|
*/
|
|
305
321
|
listImageRecipes(params: Imagebuilder.Types.ListImageRecipesRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListImageRecipesResponse) => void): Request<Imagebuilder.Types.ListImageRecipesResponse, AWSError>;
|
|
306
322
|
/**
|
|
307
|
-
*
|
|
323
|
+
* Returns a list of image recipes.
|
|
308
324
|
*/
|
|
309
325
|
listImageRecipes(callback?: (err: AWSError, data: Imagebuilder.Types.ListImageRecipesResponse) => void): Request<Imagebuilder.Types.ListImageRecipesResponse, AWSError>;
|
|
326
|
+
/**
|
|
327
|
+
* Returns a list of image scan aggregations for your account. You can filter by the type of key that Image Builder uses to group results. For example, if you want to get a list of findings by severity level for one of your pipelines, you might specify your pipeline with the imagePipelineArn filter. If you don't specify a filter, Image Builder returns an aggregation for your account. To streamline results, you can use the following filters in your request: accountId imageBuildVersionArn imagePipelineArn vulnerabilityId
|
|
328
|
+
*/
|
|
329
|
+
listImageScanFindingAggregations(params: Imagebuilder.Types.ListImageScanFindingAggregationsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListImageScanFindingAggregationsResponse) => void): Request<Imagebuilder.Types.ListImageScanFindingAggregationsResponse, AWSError>;
|
|
330
|
+
/**
|
|
331
|
+
* Returns a list of image scan aggregations for your account. You can filter by the type of key that Image Builder uses to group results. For example, if you want to get a list of findings by severity level for one of your pipelines, you might specify your pipeline with the imagePipelineArn filter. If you don't specify a filter, Image Builder returns an aggregation for your account. To streamline results, you can use the following filters in your request: accountId imageBuildVersionArn imagePipelineArn vulnerabilityId
|
|
332
|
+
*/
|
|
333
|
+
listImageScanFindingAggregations(callback?: (err: AWSError, data: Imagebuilder.Types.ListImageScanFindingAggregationsResponse) => void): Request<Imagebuilder.Types.ListImageScanFindingAggregationsResponse, AWSError>;
|
|
334
|
+
/**
|
|
335
|
+
* Returns a list of image scan findings for your account.
|
|
336
|
+
*/
|
|
337
|
+
listImageScanFindings(params: Imagebuilder.Types.ListImageScanFindingsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListImageScanFindingsResponse) => void): Request<Imagebuilder.Types.ListImageScanFindingsResponse, AWSError>;
|
|
338
|
+
/**
|
|
339
|
+
* Returns a list of image scan findings for your account.
|
|
340
|
+
*/
|
|
341
|
+
listImageScanFindings(callback?: (err: AWSError, data: Imagebuilder.Types.ListImageScanFindingsResponse) => void): Request<Imagebuilder.Types.ListImageScanFindingsResponse, AWSError>;
|
|
310
342
|
/**
|
|
311
343
|
* Returns the list of images that you have access to. Newly created images can take up to two minutes to appear in the ListImages API Results.
|
|
312
344
|
*/
|
|
@@ -316,27 +348,43 @@ declare class Imagebuilder extends Service {
|
|
|
316
348
|
*/
|
|
317
349
|
listImages(callback?: (err: AWSError, data: Imagebuilder.Types.ListImagesResponse) => void): Request<Imagebuilder.Types.ListImagesResponse, AWSError>;
|
|
318
350
|
/**
|
|
319
|
-
*
|
|
351
|
+
* Returns a list of infrastructure configurations.
|
|
320
352
|
*/
|
|
321
353
|
listInfrastructureConfigurations(params: Imagebuilder.Types.ListInfrastructureConfigurationsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListInfrastructureConfigurationsResponse) => void): Request<Imagebuilder.Types.ListInfrastructureConfigurationsResponse, AWSError>;
|
|
322
354
|
/**
|
|
323
|
-
*
|
|
355
|
+
* Returns a list of infrastructure configurations.
|
|
324
356
|
*/
|
|
325
357
|
listInfrastructureConfigurations(callback?: (err: AWSError, data: Imagebuilder.Types.ListInfrastructureConfigurationsResponse) => void): Request<Imagebuilder.Types.ListInfrastructureConfigurationsResponse, AWSError>;
|
|
326
358
|
/**
|
|
327
|
-
*
|
|
359
|
+
* Returns the list of tags for the specified resource.
|
|
328
360
|
*/
|
|
329
361
|
listTagsForResource(params: Imagebuilder.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListTagsForResourceResponse) => void): Request<Imagebuilder.Types.ListTagsForResourceResponse, AWSError>;
|
|
330
362
|
/**
|
|
331
|
-
*
|
|
363
|
+
* Returns the list of tags for the specified resource.
|
|
332
364
|
*/
|
|
333
365
|
listTagsForResource(callback?: (err: AWSError, data: Imagebuilder.Types.ListTagsForResourceResponse) => void): Request<Imagebuilder.Types.ListTagsForResourceResponse, AWSError>;
|
|
334
366
|
/**
|
|
335
|
-
*
|
|
367
|
+
* Returns a list of workflow runtime instance metadata objects for a specific image build version.
|
|
368
|
+
*/
|
|
369
|
+
listWorkflowExecutions(params: Imagebuilder.Types.ListWorkflowExecutionsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListWorkflowExecutionsResponse) => void): Request<Imagebuilder.Types.ListWorkflowExecutionsResponse, AWSError>;
|
|
370
|
+
/**
|
|
371
|
+
* Returns a list of workflow runtime instance metadata objects for a specific image build version.
|
|
372
|
+
*/
|
|
373
|
+
listWorkflowExecutions(callback?: (err: AWSError, data: Imagebuilder.Types.ListWorkflowExecutionsResponse) => void): Request<Imagebuilder.Types.ListWorkflowExecutionsResponse, AWSError>;
|
|
374
|
+
/**
|
|
375
|
+
* Shows runtime data for each step in a runtime instance of the workflow that you specify in the request.
|
|
376
|
+
*/
|
|
377
|
+
listWorkflowStepExecutions(params: Imagebuilder.Types.ListWorkflowStepExecutionsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListWorkflowStepExecutionsResponse) => void): Request<Imagebuilder.Types.ListWorkflowStepExecutionsResponse, AWSError>;
|
|
378
|
+
/**
|
|
379
|
+
* Shows runtime data for each step in a runtime instance of the workflow that you specify in the request.
|
|
380
|
+
*/
|
|
381
|
+
listWorkflowStepExecutions(callback?: (err: AWSError, data: Imagebuilder.Types.ListWorkflowStepExecutionsResponse) => void): Request<Imagebuilder.Types.ListWorkflowStepExecutionsResponse, AWSError>;
|
|
382
|
+
/**
|
|
383
|
+
* Applies a policy to a component. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutComponentPolicy, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
|
|
336
384
|
*/
|
|
337
385
|
putComponentPolicy(params: Imagebuilder.Types.PutComponentPolicyRequest, callback?: (err: AWSError, data: Imagebuilder.Types.PutComponentPolicyResponse) => void): Request<Imagebuilder.Types.PutComponentPolicyResponse, AWSError>;
|
|
338
386
|
/**
|
|
339
|
-
*
|
|
387
|
+
* Applies a policy to a component. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutComponentPolicy, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
|
|
340
388
|
*/
|
|
341
389
|
putComponentPolicy(callback?: (err: AWSError, data: Imagebuilder.Types.PutComponentPolicyResponse) => void): Request<Imagebuilder.Types.PutComponentPolicyResponse, AWSError>;
|
|
342
390
|
/**
|
|
@@ -356,63 +404,73 @@ declare class Imagebuilder extends Service {
|
|
|
356
404
|
*/
|
|
357
405
|
putImagePolicy(callback?: (err: AWSError, data: Imagebuilder.Types.PutImagePolicyResponse) => void): Request<Imagebuilder.Types.PutImagePolicyResponse, AWSError>;
|
|
358
406
|
/**
|
|
359
|
-
*
|
|
407
|
+
* Applies a policy to an image recipe. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutImageRecipePolicy, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
|
|
360
408
|
*/
|
|
361
409
|
putImageRecipePolicy(params: Imagebuilder.Types.PutImageRecipePolicyRequest, callback?: (err: AWSError, data: Imagebuilder.Types.PutImageRecipePolicyResponse) => void): Request<Imagebuilder.Types.PutImageRecipePolicyResponse, AWSError>;
|
|
362
410
|
/**
|
|
363
|
-
*
|
|
411
|
+
* Applies a policy to an image recipe. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutImageRecipePolicy, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
|
|
364
412
|
*/
|
|
365
413
|
putImageRecipePolicy(callback?: (err: AWSError, data: Imagebuilder.Types.PutImageRecipePolicyResponse) => void): Request<Imagebuilder.Types.PutImageRecipePolicyResponse, AWSError>;
|
|
366
414
|
/**
|
|
367
|
-
*
|
|
415
|
+
* Manually triggers a pipeline to create an image.
|
|
368
416
|
*/
|
|
369
417
|
startImagePipelineExecution(params: Imagebuilder.Types.StartImagePipelineExecutionRequest, callback?: (err: AWSError, data: Imagebuilder.Types.StartImagePipelineExecutionResponse) => void): Request<Imagebuilder.Types.StartImagePipelineExecutionResponse, AWSError>;
|
|
370
418
|
/**
|
|
371
|
-
*
|
|
419
|
+
* Manually triggers a pipeline to create an image.
|
|
372
420
|
*/
|
|
373
421
|
startImagePipelineExecution(callback?: (err: AWSError, data: Imagebuilder.Types.StartImagePipelineExecutionResponse) => void): Request<Imagebuilder.Types.StartImagePipelineExecutionResponse, AWSError>;
|
|
374
422
|
/**
|
|
375
|
-
*
|
|
423
|
+
* Adds a tag to a resource.
|
|
376
424
|
*/
|
|
377
425
|
tagResource(params: Imagebuilder.Types.TagResourceRequest, callback?: (err: AWSError, data: Imagebuilder.Types.TagResourceResponse) => void): Request<Imagebuilder.Types.TagResourceResponse, AWSError>;
|
|
378
426
|
/**
|
|
379
|
-
*
|
|
427
|
+
* Adds a tag to a resource.
|
|
380
428
|
*/
|
|
381
429
|
tagResource(callback?: (err: AWSError, data: Imagebuilder.Types.TagResourceResponse) => void): Request<Imagebuilder.Types.TagResourceResponse, AWSError>;
|
|
382
430
|
/**
|
|
383
|
-
*
|
|
431
|
+
* Removes a tag from a resource.
|
|
384
432
|
*/
|
|
385
433
|
untagResource(params: Imagebuilder.Types.UntagResourceRequest, callback?: (err: AWSError, data: Imagebuilder.Types.UntagResourceResponse) => void): Request<Imagebuilder.Types.UntagResourceResponse, AWSError>;
|
|
386
434
|
/**
|
|
387
|
-
*
|
|
435
|
+
* Removes a tag from a resource.
|
|
388
436
|
*/
|
|
389
437
|
untagResource(callback?: (err: AWSError, data: Imagebuilder.Types.UntagResourceResponse) => void): Request<Imagebuilder.Types.UntagResourceResponse, AWSError>;
|
|
390
438
|
/**
|
|
391
|
-
*
|
|
439
|
+
* Updates a new distribution configuration. Distribution configurations define and configure the outputs of your pipeline.
|
|
392
440
|
*/
|
|
393
441
|
updateDistributionConfiguration(params: Imagebuilder.Types.UpdateDistributionConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.UpdateDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.UpdateDistributionConfigurationResponse, AWSError>;
|
|
394
442
|
/**
|
|
395
|
-
*
|
|
443
|
+
* Updates a new distribution configuration. Distribution configurations define and configure the outputs of your pipeline.
|
|
396
444
|
*/
|
|
397
445
|
updateDistributionConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.UpdateDistributionConfigurationResponse) => void): Request<Imagebuilder.Types.UpdateDistributionConfigurationResponse, AWSError>;
|
|
398
446
|
/**
|
|
399
|
-
*
|
|
447
|
+
* Updates an image pipeline. Image pipelines enable you to automate the creation and distribution of images. UpdateImagePipeline does not support selective updates for the pipeline. You must specify all of the required properties in the update request, not just the properties that have changed.
|
|
400
448
|
*/
|
|
401
449
|
updateImagePipeline(params: Imagebuilder.Types.UpdateImagePipelineRequest, callback?: (err: AWSError, data: Imagebuilder.Types.UpdateImagePipelineResponse) => void): Request<Imagebuilder.Types.UpdateImagePipelineResponse, AWSError>;
|
|
402
450
|
/**
|
|
403
|
-
*
|
|
451
|
+
* Updates an image pipeline. Image pipelines enable you to automate the creation and distribution of images. UpdateImagePipeline does not support selective updates for the pipeline. You must specify all of the required properties in the update request, not just the properties that have changed.
|
|
404
452
|
*/
|
|
405
453
|
updateImagePipeline(callback?: (err: AWSError, data: Imagebuilder.Types.UpdateImagePipelineResponse) => void): Request<Imagebuilder.Types.UpdateImagePipelineResponse, AWSError>;
|
|
406
454
|
/**
|
|
407
|
-
*
|
|
455
|
+
* Updates a new infrastructure configuration. An infrastructure configuration defines the environment in which your image will be built and tested.
|
|
408
456
|
*/
|
|
409
457
|
updateInfrastructureConfiguration(params: Imagebuilder.Types.UpdateInfrastructureConfigurationRequest, callback?: (err: AWSError, data: Imagebuilder.Types.UpdateInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.UpdateInfrastructureConfigurationResponse, AWSError>;
|
|
410
458
|
/**
|
|
411
|
-
*
|
|
459
|
+
* Updates a new infrastructure configuration. An infrastructure configuration defines the environment in which your image will be built and tested.
|
|
412
460
|
*/
|
|
413
461
|
updateInfrastructureConfiguration(callback?: (err: AWSError, data: Imagebuilder.Types.UpdateInfrastructureConfigurationResponse) => void): Request<Imagebuilder.Types.UpdateInfrastructureConfigurationResponse, AWSError>;
|
|
414
462
|
}
|
|
415
463
|
declare namespace Imagebuilder {
|
|
464
|
+
export interface AccountAggregation {
|
|
465
|
+
/**
|
|
466
|
+
* Identifies the account that owns the aggregated resource findings.
|
|
467
|
+
*/
|
|
468
|
+
accountId?: NonEmptyString;
|
|
469
|
+
/**
|
|
470
|
+
* Counts by severity level for medium severity and higher level findings, plus a total for all of the findings.
|
|
471
|
+
*/
|
|
472
|
+
severityCounts?: SeverityCounts;
|
|
473
|
+
}
|
|
416
474
|
export type AccountId = string;
|
|
417
475
|
export type AccountList = AccountId[];
|
|
418
476
|
export interface AdditionalInstanceConfiguration {
|
|
@@ -470,7 +528,7 @@ declare namespace Imagebuilder {
|
|
|
470
528
|
*/
|
|
471
529
|
kmsKeyId?: NonEmptyString;
|
|
472
530
|
/**
|
|
473
|
-
*
|
|
531
|
+
* Launch permissions can be used to configure which Amazon Web Services accounts can use the AMI to launch instances.
|
|
474
532
|
*/
|
|
475
533
|
launchPermission?: LaunchPermissionConfiguration;
|
|
476
534
|
}
|
|
@@ -481,7 +539,7 @@ declare namespace Imagebuilder {
|
|
|
481
539
|
export type BuildType = "USER_INITIATED"|"SCHEDULED"|"IMPORT"|string;
|
|
482
540
|
export interface CancelImageCreationRequest {
|
|
483
541
|
/**
|
|
484
|
-
* The Amazon Resource Name (ARN) of the image
|
|
542
|
+
* The Amazon Resource Name (ARN) of the image that you want to cancel creation for.
|
|
485
543
|
*/
|
|
486
544
|
imageBuildVersionArn: ImageBuildVersionArn;
|
|
487
545
|
/**
|
|
@@ -499,7 +557,7 @@ declare namespace Imagebuilder {
|
|
|
499
557
|
*/
|
|
500
558
|
clientToken?: ClientToken;
|
|
501
559
|
/**
|
|
502
|
-
* The
|
|
560
|
+
* The ARN of the image whose creation this request canceled.
|
|
503
561
|
*/
|
|
504
562
|
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
505
563
|
}
|
|
@@ -894,7 +952,7 @@ declare namespace Imagebuilder {
|
|
|
894
952
|
*/
|
|
895
953
|
platform: Platform;
|
|
896
954
|
/**
|
|
897
|
-
*
|
|
955
|
+
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the base image OS version during image recipe creation.
|
|
898
956
|
*/
|
|
899
957
|
supportedOsVersions?: OsVersionList;
|
|
900
958
|
/**
|
|
@@ -928,7 +986,7 @@ declare namespace Imagebuilder {
|
|
|
928
986
|
*/
|
|
929
987
|
clientToken?: ClientToken;
|
|
930
988
|
/**
|
|
931
|
-
* The Amazon Resource Name (ARN) of the component that
|
|
989
|
+
* The Amazon Resource Name (ARN) of the component that this request created.
|
|
932
990
|
*/
|
|
933
991
|
componentBuildVersionArn?: ComponentBuildVersionArn;
|
|
934
992
|
}
|
|
@@ -1014,51 +1072,51 @@ declare namespace Imagebuilder {
|
|
|
1014
1072
|
}
|
|
1015
1073
|
export interface CreateDistributionConfigurationRequest {
|
|
1016
1074
|
/**
|
|
1017
|
-
*
|
|
1075
|
+
* The name of the distribution configuration.
|
|
1018
1076
|
*/
|
|
1019
1077
|
name: ResourceName;
|
|
1020
1078
|
/**
|
|
1021
|
-
*
|
|
1079
|
+
* The description of the distribution configuration.
|
|
1022
1080
|
*/
|
|
1023
1081
|
description?: NonEmptyString;
|
|
1024
1082
|
/**
|
|
1025
|
-
*
|
|
1083
|
+
* The distributions of the distribution configuration.
|
|
1026
1084
|
*/
|
|
1027
1085
|
distributions: DistributionList;
|
|
1028
1086
|
/**
|
|
1029
|
-
*
|
|
1087
|
+
* The tags of the distribution configuration.
|
|
1030
1088
|
*/
|
|
1031
1089
|
tags?: TagMap;
|
|
1032
1090
|
/**
|
|
1033
|
-
*
|
|
1091
|
+
* The idempotency token of the distribution configuration.
|
|
1034
1092
|
*/
|
|
1035
1093
|
clientToken: ClientToken;
|
|
1036
1094
|
}
|
|
1037
1095
|
export interface CreateDistributionConfigurationResponse {
|
|
1038
1096
|
/**
|
|
1039
|
-
*
|
|
1097
|
+
* The request ID that uniquely identifies this request.
|
|
1040
1098
|
*/
|
|
1041
1099
|
requestId?: NonEmptyString;
|
|
1042
1100
|
/**
|
|
1043
|
-
*
|
|
1101
|
+
* The idempotency token used to make this request idempotent.
|
|
1044
1102
|
*/
|
|
1045
1103
|
clientToken?: ClientToken;
|
|
1046
1104
|
/**
|
|
1047
|
-
*
|
|
1105
|
+
* The Amazon Resource Name (ARN) of the distribution configuration that was created by this request.
|
|
1048
1106
|
*/
|
|
1049
1107
|
distributionConfigurationArn?: DistributionConfigurationArn;
|
|
1050
1108
|
}
|
|
1051
1109
|
export interface CreateImagePipelineRequest {
|
|
1052
1110
|
/**
|
|
1053
|
-
*
|
|
1111
|
+
* The name of the image pipeline.
|
|
1054
1112
|
*/
|
|
1055
1113
|
name: ResourceName;
|
|
1056
1114
|
/**
|
|
1057
|
-
*
|
|
1115
|
+
* The description of the image pipeline.
|
|
1058
1116
|
*/
|
|
1059
1117
|
description?: NonEmptyString;
|
|
1060
1118
|
/**
|
|
1061
|
-
*
|
|
1119
|
+
* The Amazon Resource Name (ARN) of the image recipe that will be used to configure images created by this image pipeline.
|
|
1062
1120
|
*/
|
|
1063
1121
|
imageRecipeArn?: ImageRecipeArn;
|
|
1064
1122
|
/**
|
|
@@ -1066,59 +1124,63 @@ declare namespace Imagebuilder {
|
|
|
1066
1124
|
*/
|
|
1067
1125
|
containerRecipeArn?: ContainerRecipeArn;
|
|
1068
1126
|
/**
|
|
1069
|
-
*
|
|
1127
|
+
* The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images created by this image pipeline.
|
|
1070
1128
|
*/
|
|
1071
1129
|
infrastructureConfigurationArn: InfrastructureConfigurationArn;
|
|
1072
1130
|
/**
|
|
1073
|
-
*
|
|
1131
|
+
* The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images created by this image pipeline.
|
|
1074
1132
|
*/
|
|
1075
1133
|
distributionConfigurationArn?: DistributionConfigurationArn;
|
|
1076
1134
|
/**
|
|
1077
|
-
*
|
|
1135
|
+
* The image test configuration of the image pipeline.
|
|
1078
1136
|
*/
|
|
1079
1137
|
imageTestsConfiguration?: ImageTestsConfiguration;
|
|
1080
1138
|
/**
|
|
1081
|
-
*
|
|
1139
|
+
* Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
|
|
1082
1140
|
*/
|
|
1083
1141
|
enhancedImageMetadataEnabled?: NullableBoolean;
|
|
1084
1142
|
/**
|
|
1085
|
-
*
|
|
1143
|
+
* The schedule of the image pipeline.
|
|
1086
1144
|
*/
|
|
1087
1145
|
schedule?: Schedule;
|
|
1088
1146
|
/**
|
|
1089
|
-
*
|
|
1147
|
+
* The status of the image pipeline.
|
|
1090
1148
|
*/
|
|
1091
1149
|
status?: PipelineStatus;
|
|
1092
1150
|
/**
|
|
1093
|
-
*
|
|
1151
|
+
* The tags of the image pipeline.
|
|
1094
1152
|
*/
|
|
1095
1153
|
tags?: TagMap;
|
|
1096
1154
|
/**
|
|
1097
|
-
*
|
|
1155
|
+
* The idempotency token used to make this request idempotent.
|
|
1098
1156
|
*/
|
|
1099
1157
|
clientToken: ClientToken;
|
|
1158
|
+
/**
|
|
1159
|
+
* Contains settings for vulnerability scans.
|
|
1160
|
+
*/
|
|
1161
|
+
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
1100
1162
|
}
|
|
1101
1163
|
export interface CreateImagePipelineResponse {
|
|
1102
1164
|
/**
|
|
1103
|
-
*
|
|
1165
|
+
* The request ID that uniquely identifies this request.
|
|
1104
1166
|
*/
|
|
1105
1167
|
requestId?: NonEmptyString;
|
|
1106
1168
|
/**
|
|
1107
|
-
*
|
|
1169
|
+
* The idempotency token used to make this request idempotent.
|
|
1108
1170
|
*/
|
|
1109
1171
|
clientToken?: ClientToken;
|
|
1110
1172
|
/**
|
|
1111
|
-
*
|
|
1173
|
+
* The Amazon Resource Name (ARN) of the image pipeline that was created by this request.
|
|
1112
1174
|
*/
|
|
1113
1175
|
imagePipelineArn?: ImagePipelineArn;
|
|
1114
1176
|
}
|
|
1115
1177
|
export interface CreateImageRecipeRequest {
|
|
1116
1178
|
/**
|
|
1117
|
-
*
|
|
1179
|
+
* The name of the image recipe.
|
|
1118
1180
|
*/
|
|
1119
1181
|
name: ResourceName;
|
|
1120
1182
|
/**
|
|
1121
|
-
*
|
|
1183
|
+
* The description of the image recipe.
|
|
1122
1184
|
*/
|
|
1123
1185
|
description?: NonEmptyString;
|
|
1124
1186
|
/**
|
|
@@ -1138,7 +1200,7 @@ declare namespace Imagebuilder {
|
|
|
1138
1200
|
*/
|
|
1139
1201
|
blockDeviceMappings?: InstanceBlockDeviceMappings;
|
|
1140
1202
|
/**
|
|
1141
|
-
*
|
|
1203
|
+
* The tags of the image recipe.
|
|
1142
1204
|
*/
|
|
1143
1205
|
tags?: TagMap;
|
|
1144
1206
|
/**
|
|
@@ -1170,7 +1232,7 @@ declare namespace Imagebuilder {
|
|
|
1170
1232
|
}
|
|
1171
1233
|
export interface CreateImageRequest {
|
|
1172
1234
|
/**
|
|
1173
|
-
*
|
|
1235
|
+
* The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
|
|
1174
1236
|
*/
|
|
1175
1237
|
imageRecipeArn?: ImageRecipeArn;
|
|
1176
1238
|
/**
|
|
@@ -1178,41 +1240,45 @@ declare namespace Imagebuilder {
|
|
|
1178
1240
|
*/
|
|
1179
1241
|
containerRecipeArn?: ContainerRecipeArn;
|
|
1180
1242
|
/**
|
|
1181
|
-
*
|
|
1243
|
+
* The Amazon Resource Name (ARN) of the distribution configuration that defines and configures the outputs of your pipeline.
|
|
1182
1244
|
*/
|
|
1183
1245
|
distributionConfigurationArn?: DistributionConfigurationArn;
|
|
1184
1246
|
/**
|
|
1185
|
-
*
|
|
1247
|
+
* The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
|
|
1186
1248
|
*/
|
|
1187
1249
|
infrastructureConfigurationArn: InfrastructureConfigurationArn;
|
|
1188
1250
|
/**
|
|
1189
|
-
*
|
|
1251
|
+
* The image tests configuration of the image.
|
|
1190
1252
|
*/
|
|
1191
1253
|
imageTestsConfiguration?: ImageTestsConfiguration;
|
|
1192
1254
|
/**
|
|
1193
|
-
*
|
|
1255
|
+
* Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
|
|
1194
1256
|
*/
|
|
1195
1257
|
enhancedImageMetadataEnabled?: NullableBoolean;
|
|
1196
1258
|
/**
|
|
1197
|
-
*
|
|
1259
|
+
* The tags of the image.
|
|
1198
1260
|
*/
|
|
1199
1261
|
tags?: TagMap;
|
|
1200
1262
|
/**
|
|
1201
|
-
*
|
|
1263
|
+
* The idempotency token used to make this request idempotent.
|
|
1202
1264
|
*/
|
|
1203
1265
|
clientToken: ClientToken;
|
|
1266
|
+
/**
|
|
1267
|
+
* Contains settings for vulnerability scans.
|
|
1268
|
+
*/
|
|
1269
|
+
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
1204
1270
|
}
|
|
1205
1271
|
export interface CreateImageResponse {
|
|
1206
1272
|
/**
|
|
1207
|
-
*
|
|
1273
|
+
* The request ID that uniquely identifies this request.
|
|
1208
1274
|
*/
|
|
1209
1275
|
requestId?: NonEmptyString;
|
|
1210
1276
|
/**
|
|
1211
|
-
*
|
|
1277
|
+
* The idempotency token used to make this request idempotent.
|
|
1212
1278
|
*/
|
|
1213
1279
|
clientToken?: ClientToken;
|
|
1214
1280
|
/**
|
|
1215
|
-
*
|
|
1281
|
+
* The Amazon Resource Name (ARN) of the image that this request created.
|
|
1216
1282
|
*/
|
|
1217
1283
|
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
1218
1284
|
}
|
|
@@ -1288,7 +1354,64 @@ declare namespace Imagebuilder {
|
|
|
1288
1354
|
*/
|
|
1289
1355
|
infrastructureConfigurationArn?: InfrastructureConfigurationArn;
|
|
1290
1356
|
}
|
|
1357
|
+
export interface CvssScore {
|
|
1358
|
+
/**
|
|
1359
|
+
* The CVSS base score.
|
|
1360
|
+
*/
|
|
1361
|
+
baseScore?: NonNegativeDouble;
|
|
1362
|
+
/**
|
|
1363
|
+
* The vector string of the CVSS score.
|
|
1364
|
+
*/
|
|
1365
|
+
scoringVector?: NonEmptyString;
|
|
1366
|
+
/**
|
|
1367
|
+
* The CVSS version that generated the score.
|
|
1368
|
+
*/
|
|
1369
|
+
version?: NonEmptyString;
|
|
1370
|
+
/**
|
|
1371
|
+
* The source of the CVSS score.
|
|
1372
|
+
*/
|
|
1373
|
+
source?: NonEmptyString;
|
|
1374
|
+
}
|
|
1375
|
+
export interface CvssScoreAdjustment {
|
|
1376
|
+
/**
|
|
1377
|
+
* The metric that Amazon Inspector used to adjust the CVSS score.
|
|
1378
|
+
*/
|
|
1379
|
+
metric?: NonEmptyString;
|
|
1380
|
+
/**
|
|
1381
|
+
* The reason for the CVSS score adjustment.
|
|
1382
|
+
*/
|
|
1383
|
+
reason?: NonEmptyString;
|
|
1384
|
+
}
|
|
1385
|
+
export type CvssScoreAdjustmentList = CvssScoreAdjustment[];
|
|
1386
|
+
export interface CvssScoreDetails {
|
|
1387
|
+
/**
|
|
1388
|
+
* The source for the CVSS score.
|
|
1389
|
+
*/
|
|
1390
|
+
scoreSource?: NonEmptyString;
|
|
1391
|
+
/**
|
|
1392
|
+
* The source of the finding.
|
|
1393
|
+
*/
|
|
1394
|
+
cvssSource?: NonEmptyString;
|
|
1395
|
+
/**
|
|
1396
|
+
* The CVSS version that generated the score.
|
|
1397
|
+
*/
|
|
1398
|
+
version?: NonEmptyString;
|
|
1399
|
+
/**
|
|
1400
|
+
* The CVSS score.
|
|
1401
|
+
*/
|
|
1402
|
+
score?: NonNegativeDouble;
|
|
1403
|
+
/**
|
|
1404
|
+
* A vector that measures the severity of the vulnerability.
|
|
1405
|
+
*/
|
|
1406
|
+
scoringVector?: NonEmptyString;
|
|
1407
|
+
/**
|
|
1408
|
+
* An object that contains details about an adjustment that Amazon Inspector made to the CVSS score for the finding.
|
|
1409
|
+
*/
|
|
1410
|
+
adjustments?: CvssScoreAdjustmentList;
|
|
1411
|
+
}
|
|
1412
|
+
export type CvssScoreList = CvssScore[];
|
|
1291
1413
|
export type DateTime = string;
|
|
1414
|
+
export type DateTimeTimestamp = Date;
|
|
1292
1415
|
export interface DeleteComponentRequest {
|
|
1293
1416
|
/**
|
|
1294
1417
|
* The Amazon Resource Name (ARN) of the component build version to delete.
|
|
@@ -1301,7 +1424,7 @@ declare namespace Imagebuilder {
|
|
|
1301
1424
|
*/
|
|
1302
1425
|
requestId?: NonEmptyString;
|
|
1303
1426
|
/**
|
|
1304
|
-
* The
|
|
1427
|
+
* The ARN of the component build version that this request deleted.
|
|
1305
1428
|
*/
|
|
1306
1429
|
componentBuildVersionArn?: ComponentBuildVersionArn;
|
|
1307
1430
|
}
|
|
@@ -1381,7 +1504,7 @@ declare namespace Imagebuilder {
|
|
|
1381
1504
|
*/
|
|
1382
1505
|
requestId?: NonEmptyString;
|
|
1383
1506
|
/**
|
|
1384
|
-
* The
|
|
1507
|
+
* The ARN of the Image Builder image resource that this request deleted.
|
|
1385
1508
|
*/
|
|
1386
1509
|
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
1387
1510
|
}
|
|
@@ -1531,7 +1654,7 @@ declare namespace Imagebuilder {
|
|
|
1531
1654
|
*/
|
|
1532
1655
|
volumeType?: EbsVolumeType;
|
|
1533
1656
|
/**
|
|
1534
|
-
* For GP3 volumes only – The throughput in MiB/s that the volume supports.
|
|
1657
|
+
* For GP3 volumes only – The throughput in MiB/s that the volume supports.
|
|
1535
1658
|
*/
|
|
1536
1659
|
throughput?: EbsVolumeThroughput;
|
|
1537
1660
|
}
|
|
@@ -1539,6 +1662,16 @@ declare namespace Imagebuilder {
|
|
|
1539
1662
|
export type EbsVolumeSizeInteger = number;
|
|
1540
1663
|
export type EbsVolumeThroughput = number;
|
|
1541
1664
|
export type EbsVolumeType = "standard"|"io1"|"io2"|"gp2"|"gp3"|"sc1"|"st1"|string;
|
|
1665
|
+
export interface EcrConfiguration {
|
|
1666
|
+
/**
|
|
1667
|
+
* The name of the container repository that Amazon Inspector scans to identify findings for your container images. The name includes the path for the repository location. If you don’t provide this information, Image Builder creates a repository in your account named image-builder-image-scanning-repository for vulnerability scans of your output container images.
|
|
1668
|
+
*/
|
|
1669
|
+
repositoryName?: NonEmptyString;
|
|
1670
|
+
/**
|
|
1671
|
+
* Tags for Image Builder to apply to the output container image that &INS; scans. Tags can help you identify and manage your scanned images.
|
|
1672
|
+
*/
|
|
1673
|
+
containerTags?: StringList;
|
|
1674
|
+
}
|
|
1542
1675
|
export type EmptyString = string;
|
|
1543
1676
|
export interface FastLaunchConfiguration {
|
|
1544
1677
|
/**
|
|
@@ -1615,7 +1748,7 @@ declare namespace Imagebuilder {
|
|
|
1615
1748
|
}
|
|
1616
1749
|
export interface GetComponentRequest {
|
|
1617
1750
|
/**
|
|
1618
|
-
* The Amazon Resource Name (ARN) of the component that you want to
|
|
1751
|
+
* The Amazon Resource Name (ARN) of the component that you want to get. Regex requires the suffix /\d+$.
|
|
1619
1752
|
*/
|
|
1620
1753
|
componentBuildVersionArn: ComponentVersionArnOrBuildVersionArn;
|
|
1621
1754
|
}
|
|
@@ -1743,7 +1876,7 @@ declare namespace Imagebuilder {
|
|
|
1743
1876
|
}
|
|
1744
1877
|
export interface GetImageRequest {
|
|
1745
1878
|
/**
|
|
1746
|
-
* The Amazon Resource Name (ARN) of the image that you want to
|
|
1879
|
+
* The Amazon Resource Name (ARN) of the image that you want to get.
|
|
1747
1880
|
*/
|
|
1748
1881
|
imageBuildVersionArn: ImageVersionArnOrBuildVersionArn;
|
|
1749
1882
|
}
|
|
@@ -1773,6 +1906,142 @@ declare namespace Imagebuilder {
|
|
|
1773
1906
|
*/
|
|
1774
1907
|
infrastructureConfiguration?: InfrastructureConfiguration;
|
|
1775
1908
|
}
|
|
1909
|
+
export interface GetWorkflowExecutionRequest {
|
|
1910
|
+
/**
|
|
1911
|
+
* Use the unique identifier for a runtime instance of the workflow to get runtime details.
|
|
1912
|
+
*/
|
|
1913
|
+
workflowExecutionId: WorkflowExecutionId;
|
|
1914
|
+
}
|
|
1915
|
+
export interface GetWorkflowExecutionResponse {
|
|
1916
|
+
/**
|
|
1917
|
+
* The request ID that uniquely identifies this request.
|
|
1918
|
+
*/
|
|
1919
|
+
requestId?: NonEmptyString;
|
|
1920
|
+
/**
|
|
1921
|
+
* The Amazon Resource Name (ARN) of the build version for the Image Builder workflow resource that defines the specified runtime instance of the workflow.
|
|
1922
|
+
*/
|
|
1923
|
+
workflowBuildVersionArn?: WorkflowBuildVersionArn;
|
|
1924
|
+
/**
|
|
1925
|
+
* The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow.
|
|
1926
|
+
*/
|
|
1927
|
+
workflowExecutionId?: WorkflowExecutionId;
|
|
1928
|
+
/**
|
|
1929
|
+
* The Amazon Resource Name (ARN) of the image resource build version that the specified runtime instance of the workflow created.
|
|
1930
|
+
*/
|
|
1931
|
+
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
1932
|
+
/**
|
|
1933
|
+
* The type of workflow that Image Builder ran for the specified runtime instance of the workflow.
|
|
1934
|
+
*/
|
|
1935
|
+
type?: WorkflowType;
|
|
1936
|
+
/**
|
|
1937
|
+
* The current runtime status for the specified runtime instance of the workflow.
|
|
1938
|
+
*/
|
|
1939
|
+
status?: WorkflowExecutionStatus;
|
|
1940
|
+
/**
|
|
1941
|
+
* The output message from the specified runtime instance of the workflow, if applicable.
|
|
1942
|
+
*/
|
|
1943
|
+
message?: WorkflowExecutionMessage;
|
|
1944
|
+
/**
|
|
1945
|
+
* The total number of steps in the specified runtime instance of the workflow that ran. This number should equal the sum of the step counts for steps that succeeded, were skipped, and failed.
|
|
1946
|
+
*/
|
|
1947
|
+
totalStepCount?: WorkflowStepCount;
|
|
1948
|
+
/**
|
|
1949
|
+
* A runtime count for the number of steps that ran successfully in the specified runtime instance of the workflow.
|
|
1950
|
+
*/
|
|
1951
|
+
totalStepsSucceeded?: WorkflowStepCount;
|
|
1952
|
+
/**
|
|
1953
|
+
* A runtime count for the number of steps that failed in the specified runtime instance of the workflow.
|
|
1954
|
+
*/
|
|
1955
|
+
totalStepsFailed?: WorkflowStepCount;
|
|
1956
|
+
/**
|
|
1957
|
+
* A runtime count for the number of steps that were skipped in the specified runtime instance of the workflow.
|
|
1958
|
+
*/
|
|
1959
|
+
totalStepsSkipped?: WorkflowStepCount;
|
|
1960
|
+
/**
|
|
1961
|
+
* The timestamp when the specified runtime instance of the workflow started.
|
|
1962
|
+
*/
|
|
1963
|
+
startTime?: DateTime;
|
|
1964
|
+
/**
|
|
1965
|
+
* The timestamp when the specified runtime instance of the workflow finished.
|
|
1966
|
+
*/
|
|
1967
|
+
endTime?: DateTime;
|
|
1968
|
+
}
|
|
1969
|
+
export interface GetWorkflowStepExecutionRequest {
|
|
1970
|
+
/**
|
|
1971
|
+
* Use the unique identifier for a specific runtime instance of the workflow step to get runtime details for that step.
|
|
1972
|
+
*/
|
|
1973
|
+
stepExecutionId: WorkflowStepExecutionId;
|
|
1974
|
+
}
|
|
1975
|
+
export interface GetWorkflowStepExecutionResponse {
|
|
1976
|
+
/**
|
|
1977
|
+
* The request ID that uniquely identifies this request.
|
|
1978
|
+
*/
|
|
1979
|
+
requestId?: NonEmptyString;
|
|
1980
|
+
/**
|
|
1981
|
+
* The unique identifier for the runtime version of the workflow step that you specified in the request.
|
|
1982
|
+
*/
|
|
1983
|
+
stepExecutionId?: WorkflowStepExecutionId;
|
|
1984
|
+
/**
|
|
1985
|
+
* The Amazon Resource Name (ARN) of the build version for the Image Builder workflow resource that defines this workflow step.
|
|
1986
|
+
*/
|
|
1987
|
+
workflowBuildVersionArn?: WorkflowBuildVersionArn;
|
|
1988
|
+
/**
|
|
1989
|
+
* The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow.
|
|
1990
|
+
*/
|
|
1991
|
+
workflowExecutionId?: WorkflowExecutionId;
|
|
1992
|
+
/**
|
|
1993
|
+
* The Amazon Resource Name (ARN) of the image resource build version that the specified runtime instance of the workflow step creates.
|
|
1994
|
+
*/
|
|
1995
|
+
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
1996
|
+
/**
|
|
1997
|
+
* The name of the specified runtime instance of the workflow step.
|
|
1998
|
+
*/
|
|
1999
|
+
name?: WorkflowStepName;
|
|
2000
|
+
/**
|
|
2001
|
+
* Describes the specified workflow step.
|
|
2002
|
+
*/
|
|
2003
|
+
description?: WorkflowStepDescription;
|
|
2004
|
+
/**
|
|
2005
|
+
* The name of the action that the specified step performs.
|
|
2006
|
+
*/
|
|
2007
|
+
action?: WorkflowStepAction;
|
|
2008
|
+
/**
|
|
2009
|
+
* The current status for the specified runtime version of the workflow step.
|
|
2010
|
+
*/
|
|
2011
|
+
status?: WorkflowStepExecutionStatus;
|
|
2012
|
+
/**
|
|
2013
|
+
* Reports on the rollback status of the specified runtime version of the workflow step, if applicable.
|
|
2014
|
+
*/
|
|
2015
|
+
rollbackStatus?: WorkflowStepExecutionRollbackStatus;
|
|
2016
|
+
/**
|
|
2017
|
+
* The output message from the specified runtime instance of the workflow step, if applicable.
|
|
2018
|
+
*/
|
|
2019
|
+
message?: WorkflowStepMessage;
|
|
2020
|
+
/**
|
|
2021
|
+
* Input parameters that Image Builder provided for the specified runtime instance of the workflow step.
|
|
2022
|
+
*/
|
|
2023
|
+
inputs?: WorkflowStepInputs;
|
|
2024
|
+
/**
|
|
2025
|
+
* The file names that the specified runtime version of the workflow step created as output.
|
|
2026
|
+
*/
|
|
2027
|
+
outputs?: WorkflowStepOutputs;
|
|
2028
|
+
/**
|
|
2029
|
+
* The timestamp when the specified runtime version of the workflow step started.
|
|
2030
|
+
*/
|
|
2031
|
+
startTime?: DateTime;
|
|
2032
|
+
/**
|
|
2033
|
+
* The timestamp when the specified runtime instance of the workflow step finished.
|
|
2034
|
+
*/
|
|
2035
|
+
endTime?: DateTime;
|
|
2036
|
+
/**
|
|
2037
|
+
* The action to perform if the workflow step fails.
|
|
2038
|
+
*/
|
|
2039
|
+
onFailure?: NonEmptyString;
|
|
2040
|
+
/**
|
|
2041
|
+
* The maximum duration in seconds for this step to complete its action.
|
|
2042
|
+
*/
|
|
2043
|
+
timeoutSeconds?: WorkflowStepTimeoutSecondsInteger;
|
|
2044
|
+
}
|
|
1776
2045
|
export type HttpPutResponseHopLimit = number;
|
|
1777
2046
|
export type HttpTokens = string;
|
|
1778
2047
|
export interface Image {
|
|
@@ -1856,7 +2125,26 @@ declare namespace Imagebuilder {
|
|
|
1856
2125
|
* The origin of the base image that Image Builder used to build this image.
|
|
1857
2126
|
*/
|
|
1858
2127
|
imageSource?: ImageSource;
|
|
2128
|
+
/**
|
|
2129
|
+
* Contains information about the current state of scans for this image.
|
|
2130
|
+
*/
|
|
2131
|
+
scanState?: ImageScanState;
|
|
2132
|
+
/**
|
|
2133
|
+
* Contains settings for vulnerability scans.
|
|
2134
|
+
*/
|
|
2135
|
+
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
2136
|
+
}
|
|
2137
|
+
export interface ImageAggregation {
|
|
2138
|
+
/**
|
|
2139
|
+
* The Amazon Resource Name (ARN) that identifies the image for this aggregation.
|
|
2140
|
+
*/
|
|
2141
|
+
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
2142
|
+
/**
|
|
2143
|
+
* Counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified image.
|
|
2144
|
+
*/
|
|
2145
|
+
severityCounts?: SeverityCounts;
|
|
1859
2146
|
}
|
|
2147
|
+
export type ImageBuildMessage = string;
|
|
1860
2148
|
export type ImageBuildVersionArn = string;
|
|
1861
2149
|
export type ImageBuilderArn = string;
|
|
1862
2150
|
export interface ImagePackage {
|
|
@@ -1888,7 +2176,7 @@ declare namespace Imagebuilder {
|
|
|
1888
2176
|
*/
|
|
1889
2177
|
platform?: Platform;
|
|
1890
2178
|
/**
|
|
1891
|
-
*
|
|
2179
|
+
* Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
|
|
1892
2180
|
*/
|
|
1893
2181
|
enhancedImageMetadataEnabled?: NullableBoolean;
|
|
1894
2182
|
/**
|
|
@@ -1939,6 +2227,20 @@ declare namespace Imagebuilder {
|
|
|
1939
2227
|
* The tags of this image pipeline.
|
|
1940
2228
|
*/
|
|
1941
2229
|
tags?: TagMap;
|
|
2230
|
+
/**
|
|
2231
|
+
* Contains settings for vulnerability scans.
|
|
2232
|
+
*/
|
|
2233
|
+
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
2234
|
+
}
|
|
2235
|
+
export interface ImagePipelineAggregation {
|
|
2236
|
+
/**
|
|
2237
|
+
* The Amazon Resource Name (ARN) that identifies the image pipeline for this aggregation.
|
|
2238
|
+
*/
|
|
2239
|
+
imagePipelineArn?: ImagePipelineArn;
|
|
2240
|
+
/**
|
|
2241
|
+
* Counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified image pipeline.
|
|
2242
|
+
*/
|
|
2243
|
+
severityCounts?: SeverityCounts;
|
|
1942
2244
|
}
|
|
1943
2245
|
export type ImagePipelineArn = string;
|
|
1944
2246
|
export type ImagePipelineList = ImagePipeline[];
|
|
@@ -2032,6 +2334,117 @@ declare namespace Imagebuilder {
|
|
|
2032
2334
|
tags?: TagMap;
|
|
2033
2335
|
}
|
|
2034
2336
|
export type ImageRecipeSummaryList = ImageRecipeSummary[];
|
|
2337
|
+
export interface ImageScanFinding {
|
|
2338
|
+
/**
|
|
2339
|
+
* The Amazon Web Services account ID that's associated with the finding.
|
|
2340
|
+
*/
|
|
2341
|
+
awsAccountId?: NonEmptyString;
|
|
2342
|
+
/**
|
|
2343
|
+
* The Amazon Resource Name (ARN) of the image build version that's associated with the finding.
|
|
2344
|
+
*/
|
|
2345
|
+
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
2346
|
+
/**
|
|
2347
|
+
* The Amazon Resource Name (ARN) of the image pipeline that's associated with the finding.
|
|
2348
|
+
*/
|
|
2349
|
+
imagePipelineArn?: ImagePipelineArn;
|
|
2350
|
+
/**
|
|
2351
|
+
* The type of the finding. Image Builder looks for findings of the type PACKAGE_VULNERABILITY that apply to output images, and excludes other types.
|
|
2352
|
+
*/
|
|
2353
|
+
type?: NonEmptyString;
|
|
2354
|
+
/**
|
|
2355
|
+
* The description of the finding.
|
|
2356
|
+
*/
|
|
2357
|
+
description?: NonEmptyString;
|
|
2358
|
+
/**
|
|
2359
|
+
* The title of the finding.
|
|
2360
|
+
*/
|
|
2361
|
+
title?: NonEmptyString;
|
|
2362
|
+
/**
|
|
2363
|
+
* An object that contains the details about how to remediate the finding.
|
|
2364
|
+
*/
|
|
2365
|
+
remediation?: Remediation;
|
|
2366
|
+
/**
|
|
2367
|
+
* The severity of the finding.
|
|
2368
|
+
*/
|
|
2369
|
+
severity?: NonEmptyString;
|
|
2370
|
+
/**
|
|
2371
|
+
* The date and time when the finding was first observed.
|
|
2372
|
+
*/
|
|
2373
|
+
firstObservedAt?: DateTimeTimestamp;
|
|
2374
|
+
/**
|
|
2375
|
+
* The timestamp when the finding was last updated.
|
|
2376
|
+
*/
|
|
2377
|
+
updatedAt?: DateTimeTimestamp;
|
|
2378
|
+
/**
|
|
2379
|
+
* The score that Amazon Inspector assigned for the finding.
|
|
2380
|
+
*/
|
|
2381
|
+
inspectorScore?: NonNegativeDouble;
|
|
2382
|
+
/**
|
|
2383
|
+
* An object that contains details of the Amazon Inspector score.
|
|
2384
|
+
*/
|
|
2385
|
+
inspectorScoreDetails?: InspectorScoreDetails;
|
|
2386
|
+
/**
|
|
2387
|
+
* An object that contains the details of a package vulnerability finding.
|
|
2388
|
+
*/
|
|
2389
|
+
packageVulnerabilityDetails?: PackageVulnerabilityDetails;
|
|
2390
|
+
/**
|
|
2391
|
+
* Details about whether a fix is available for any of the packages that are identified in the finding through a version update.
|
|
2392
|
+
*/
|
|
2393
|
+
fixAvailable?: NonEmptyString;
|
|
2394
|
+
}
|
|
2395
|
+
export interface ImageScanFindingAggregation {
|
|
2396
|
+
/**
|
|
2397
|
+
* Returns an object that contains severity counts based on an account ID.
|
|
2398
|
+
*/
|
|
2399
|
+
accountAggregation?: AccountAggregation;
|
|
2400
|
+
/**
|
|
2401
|
+
* Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image.
|
|
2402
|
+
*/
|
|
2403
|
+
imageAggregation?: ImageAggregation;
|
|
2404
|
+
/**
|
|
2405
|
+
* Returns an object that contains severity counts based on an image pipeline ARN.
|
|
2406
|
+
*/
|
|
2407
|
+
imagePipelineAggregation?: ImagePipelineAggregation;
|
|
2408
|
+
/**
|
|
2409
|
+
* Returns an object that contains severity counts based on vulnerability ID.
|
|
2410
|
+
*/
|
|
2411
|
+
vulnerabilityIdAggregation?: VulnerabilityIdAggregation;
|
|
2412
|
+
}
|
|
2413
|
+
export type ImageScanFindingAggregationsList = ImageScanFindingAggregation[];
|
|
2414
|
+
export interface ImageScanFindingsFilter {
|
|
2415
|
+
/**
|
|
2416
|
+
* The name of the image scan finding filter. Filter names are case-sensitive.
|
|
2417
|
+
*/
|
|
2418
|
+
name?: FilterName;
|
|
2419
|
+
/**
|
|
2420
|
+
* The filter values. Filter values are case-sensitive.
|
|
2421
|
+
*/
|
|
2422
|
+
values?: ImageScanFindingsFilterValues;
|
|
2423
|
+
}
|
|
2424
|
+
export type ImageScanFindingsFilterList = ImageScanFindingsFilter[];
|
|
2425
|
+
export type ImageScanFindingsFilterValues = FilterValue[];
|
|
2426
|
+
export type ImageScanFindingsList = ImageScanFinding[];
|
|
2427
|
+
export interface ImageScanState {
|
|
2428
|
+
/**
|
|
2429
|
+
* The current state of vulnerability scans for the image.
|
|
2430
|
+
*/
|
|
2431
|
+
status?: ImageScanStatus;
|
|
2432
|
+
/**
|
|
2433
|
+
* The reason for the scan status for the image.
|
|
2434
|
+
*/
|
|
2435
|
+
reason?: NonEmptyString;
|
|
2436
|
+
}
|
|
2437
|
+
export type ImageScanStatus = "PENDING"|"SCANNING"|"COLLECTING"|"COMPLETED"|"ABANDONED"|"FAILED"|"TIMED_OUT"|string;
|
|
2438
|
+
export interface ImageScanningConfiguration {
|
|
2439
|
+
/**
|
|
2440
|
+
* A setting that indicates whether Image Builder keeps a snapshot of the vulnerability scans that Amazon Inspector runs against the build instance when you create a new image.
|
|
2441
|
+
*/
|
|
2442
|
+
imageScanningEnabled?: NullableBoolean;
|
|
2443
|
+
/**
|
|
2444
|
+
* Contains Amazon ECR settings for vulnerability scans.
|
|
2445
|
+
*/
|
|
2446
|
+
ecrConfiguration?: EcrConfiguration;
|
|
2447
|
+
}
|
|
2035
2448
|
export type ImageSource = "AMAZON_MANAGED"|"AWS_MARKETPLACE"|"IMPORTED"|"CUSTOM"|string;
|
|
2036
2449
|
export interface ImageState {
|
|
2037
2450
|
/**
|
|
@@ -2039,7 +2452,7 @@ declare namespace Imagebuilder {
|
|
|
2039
2452
|
*/
|
|
2040
2453
|
status?: ImageStatus;
|
|
2041
2454
|
/**
|
|
2042
|
-
* The reason for the image
|
|
2455
|
+
* The reason for the status of the image.
|
|
2043
2456
|
*/
|
|
2044
2457
|
reason?: NonEmptyString;
|
|
2045
2458
|
}
|
|
@@ -2158,7 +2571,7 @@ declare namespace Imagebuilder {
|
|
|
2158
2571
|
export type ImageVersionList = ImageVersion[];
|
|
2159
2572
|
export interface ImportComponentRequest {
|
|
2160
2573
|
/**
|
|
2161
|
-
*
|
|
2574
|
+
* The name of the component.
|
|
2162
2575
|
*/
|
|
2163
2576
|
name: ResourceName;
|
|
2164
2577
|
/**
|
|
@@ -2170,7 +2583,7 @@ declare namespace Imagebuilder {
|
|
|
2170
2583
|
*/
|
|
2171
2584
|
description?: NonEmptyString;
|
|
2172
2585
|
/**
|
|
2173
|
-
* The change description of the component.
|
|
2586
|
+
* The change description of the component. This description indicates the change that has been made in this version, or what makes this version different from other versions of this component.
|
|
2174
2587
|
*/
|
|
2175
2588
|
changeDescription?: NonEmptyString;
|
|
2176
2589
|
/**
|
|
@@ -2376,6 +2789,12 @@ declare namespace Imagebuilder {
|
|
|
2376
2789
|
export type InfrastructureConfigurationSummaryList = InfrastructureConfigurationSummary[];
|
|
2377
2790
|
export type InlineComponentData = string;
|
|
2378
2791
|
export type InlineDockerFileTemplate = string;
|
|
2792
|
+
export interface InspectorScoreDetails {
|
|
2793
|
+
/**
|
|
2794
|
+
* An object that contains details about an adjustment that Amazon Inspector made to the CVSS score for the finding.
|
|
2795
|
+
*/
|
|
2796
|
+
adjustedCvss?: CvssScoreDetails;
|
|
2797
|
+
}
|
|
2379
2798
|
export interface InstanceBlockDeviceMapping {
|
|
2380
2799
|
/**
|
|
2381
2800
|
* The device to which these mappings apply.
|
|
@@ -2478,7 +2897,7 @@ declare namespace Imagebuilder {
|
|
|
2478
2897
|
*/
|
|
2479
2898
|
componentSummaryList?: ComponentSummaryList;
|
|
2480
2899
|
/**
|
|
2481
|
-
* The next token used for paginated responses. When this
|
|
2900
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2482
2901
|
*/
|
|
2483
2902
|
nextToken?: PaginationToken;
|
|
2484
2903
|
}
|
|
@@ -2514,7 +2933,7 @@ declare namespace Imagebuilder {
|
|
|
2514
2933
|
*/
|
|
2515
2934
|
componentVersionList?: ComponentVersionList;
|
|
2516
2935
|
/**
|
|
2517
|
-
* The next token used for paginated responses. When this
|
|
2936
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2518
2937
|
*/
|
|
2519
2938
|
nextToken?: PaginationToken;
|
|
2520
2939
|
}
|
|
@@ -2528,11 +2947,11 @@ declare namespace Imagebuilder {
|
|
|
2528
2947
|
*/
|
|
2529
2948
|
filters?: FilterList;
|
|
2530
2949
|
/**
|
|
2531
|
-
* The maximum
|
|
2950
|
+
* The maximum items to return in a request.
|
|
2532
2951
|
*/
|
|
2533
2952
|
maxResults?: RestrictedInteger;
|
|
2534
2953
|
/**
|
|
2535
|
-
*
|
|
2954
|
+
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
2536
2955
|
*/
|
|
2537
2956
|
nextToken?: NonEmptyString;
|
|
2538
2957
|
}
|
|
@@ -2546,7 +2965,7 @@ declare namespace Imagebuilder {
|
|
|
2546
2965
|
*/
|
|
2547
2966
|
containerRecipeSummaryList?: ContainerRecipeSummaryList;
|
|
2548
2967
|
/**
|
|
2549
|
-
* The next token
|
|
2968
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2550
2969
|
*/
|
|
2551
2970
|
nextToken?: NonEmptyString;
|
|
2552
2971
|
}
|
|
@@ -2574,7 +2993,7 @@ declare namespace Imagebuilder {
|
|
|
2574
2993
|
*/
|
|
2575
2994
|
distributionConfigurationSummaryList?: DistributionConfigurationSummaryList;
|
|
2576
2995
|
/**
|
|
2577
|
-
* The next token used for paginated responses. When this
|
|
2996
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2578
2997
|
*/
|
|
2579
2998
|
nextToken?: PaginationToken;
|
|
2580
2999
|
}
|
|
@@ -2606,7 +3025,7 @@ declare namespace Imagebuilder {
|
|
|
2606
3025
|
*/
|
|
2607
3026
|
imageSummaryList?: ImageSummaryList;
|
|
2608
3027
|
/**
|
|
2609
|
-
* The next token used for paginated responses. When this
|
|
3028
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2610
3029
|
*/
|
|
2611
3030
|
nextToken?: PaginationToken;
|
|
2612
3031
|
}
|
|
@@ -2616,7 +3035,7 @@ declare namespace Imagebuilder {
|
|
|
2616
3035
|
*/
|
|
2617
3036
|
imageBuildVersionArn: ImageBuildVersionArn;
|
|
2618
3037
|
/**
|
|
2619
|
-
* The
|
|
3038
|
+
* The maximum items to return in a request.
|
|
2620
3039
|
*/
|
|
2621
3040
|
maxResults?: RestrictedInteger;
|
|
2622
3041
|
/**
|
|
@@ -2634,7 +3053,7 @@ declare namespace Imagebuilder {
|
|
|
2634
3053
|
*/
|
|
2635
3054
|
imagePackageList?: ImagePackageList;
|
|
2636
3055
|
/**
|
|
2637
|
-
*
|
|
3056
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2638
3057
|
*/
|
|
2639
3058
|
nextToken?: PaginationToken;
|
|
2640
3059
|
}
|
|
@@ -2666,7 +3085,7 @@ declare namespace Imagebuilder {
|
|
|
2666
3085
|
*/
|
|
2667
3086
|
imageSummaryList?: ImageSummaryList;
|
|
2668
3087
|
/**
|
|
2669
|
-
* The next token used for paginated responses. When this
|
|
3088
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2670
3089
|
*/
|
|
2671
3090
|
nextToken?: PaginationToken;
|
|
2672
3091
|
}
|
|
@@ -2694,7 +3113,7 @@ declare namespace Imagebuilder {
|
|
|
2694
3113
|
*/
|
|
2695
3114
|
imagePipelineList?: ImagePipelineList;
|
|
2696
3115
|
/**
|
|
2697
|
-
* The next token used for paginated responses. When this
|
|
3116
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2698
3117
|
*/
|
|
2699
3118
|
nextToken?: PaginationToken;
|
|
2700
3119
|
}
|
|
@@ -2726,7 +3145,60 @@ declare namespace Imagebuilder {
|
|
|
2726
3145
|
*/
|
|
2727
3146
|
imageRecipeSummaryList?: ImageRecipeSummaryList;
|
|
2728
3147
|
/**
|
|
2729
|
-
* The next token used for paginated responses. When this
|
|
3148
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
3149
|
+
*/
|
|
3150
|
+
nextToken?: PaginationToken;
|
|
3151
|
+
}
|
|
3152
|
+
export interface ListImageScanFindingAggregationsRequest {
|
|
3153
|
+
filter?: Filter;
|
|
3154
|
+
/**
|
|
3155
|
+
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
3156
|
+
*/
|
|
3157
|
+
nextToken?: PaginationToken;
|
|
3158
|
+
}
|
|
3159
|
+
export interface ListImageScanFindingAggregationsResponse {
|
|
3160
|
+
/**
|
|
3161
|
+
* The request ID that uniquely identifies this request.
|
|
3162
|
+
*/
|
|
3163
|
+
requestId?: NonEmptyString;
|
|
3164
|
+
/**
|
|
3165
|
+
* The aggregation type specifies what type of key is used to group the image scan findings. Image Builder returns results based on the request filter. If you didn't specify a filter in the request, the type defaults to accountId. Aggregation types accountId imageBuildVersionArn imagePipelineArn vulnerabilityId Each aggregation includes counts by severity level for medium severity and higher level findings, plus a total for all of the findings for each key value.
|
|
3166
|
+
*/
|
|
3167
|
+
aggregationType?: NonEmptyString;
|
|
3168
|
+
/**
|
|
3169
|
+
* An array of image scan finding aggregations that match the filter criteria.
|
|
3170
|
+
*/
|
|
3171
|
+
responses?: ImageScanFindingAggregationsList;
|
|
3172
|
+
/**
|
|
3173
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
3174
|
+
*/
|
|
3175
|
+
nextToken?: PaginationToken;
|
|
3176
|
+
}
|
|
3177
|
+
export interface ListImageScanFindingsRequest {
|
|
3178
|
+
/**
|
|
3179
|
+
* An array of name value pairs that you can use to filter your results. You can use the following filters to streamline results: imageBuildVersionArn imagePipelineArn vulnerabilityId severity If you don't request a filter, then all findings in your account are listed.
|
|
3180
|
+
*/
|
|
3181
|
+
filters?: ImageScanFindingsFilterList;
|
|
3182
|
+
/**
|
|
3183
|
+
* The maximum items to return in a request.
|
|
3184
|
+
*/
|
|
3185
|
+
maxResults?: RestrictedInteger;
|
|
3186
|
+
/**
|
|
3187
|
+
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
3188
|
+
*/
|
|
3189
|
+
nextToken?: PaginationToken;
|
|
3190
|
+
}
|
|
3191
|
+
export interface ListImageScanFindingsResponse {
|
|
3192
|
+
/**
|
|
3193
|
+
* The request ID that uniquely identifies this request.
|
|
3194
|
+
*/
|
|
3195
|
+
requestId?: NonEmptyString;
|
|
3196
|
+
/**
|
|
3197
|
+
* The image scan findings for your account that meet your request filter criteria.
|
|
3198
|
+
*/
|
|
3199
|
+
findings?: ImageScanFindingsList;
|
|
3200
|
+
/**
|
|
3201
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2730
3202
|
*/
|
|
2731
3203
|
nextToken?: PaginationToken;
|
|
2732
3204
|
}
|
|
@@ -2766,7 +3238,7 @@ declare namespace Imagebuilder {
|
|
|
2766
3238
|
*/
|
|
2767
3239
|
imageVersionList?: ImageVersionList;
|
|
2768
3240
|
/**
|
|
2769
|
-
* The next token used for paginated responses. When this
|
|
3241
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2770
3242
|
*/
|
|
2771
3243
|
nextToken?: PaginationToken;
|
|
2772
3244
|
}
|
|
@@ -2794,7 +3266,7 @@ declare namespace Imagebuilder {
|
|
|
2794
3266
|
*/
|
|
2795
3267
|
infrastructureConfigurationSummaryList?: InfrastructureConfigurationSummaryList;
|
|
2796
3268
|
/**
|
|
2797
|
-
* The next token used for paginated responses. When this
|
|
3269
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
2798
3270
|
*/
|
|
2799
3271
|
nextToken?: PaginationToken;
|
|
2800
3272
|
}
|
|
@@ -2810,6 +3282,86 @@ declare namespace Imagebuilder {
|
|
|
2810
3282
|
*/
|
|
2811
3283
|
tags?: TagMap;
|
|
2812
3284
|
}
|
|
3285
|
+
export interface ListWorkflowExecutionsRequest {
|
|
3286
|
+
/**
|
|
3287
|
+
* The maximum items to return in a request.
|
|
3288
|
+
*/
|
|
3289
|
+
maxResults?: RestrictedInteger;
|
|
3290
|
+
/**
|
|
3291
|
+
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
3292
|
+
*/
|
|
3293
|
+
nextToken?: PaginationToken;
|
|
3294
|
+
/**
|
|
3295
|
+
* List all workflow runtime instances for the specified image build version resource ARN.
|
|
3296
|
+
*/
|
|
3297
|
+
imageBuildVersionArn: ImageBuildVersionArn;
|
|
3298
|
+
}
|
|
3299
|
+
export interface ListWorkflowExecutionsResponse {
|
|
3300
|
+
/**
|
|
3301
|
+
* The request ID that uniquely identifies this request.
|
|
3302
|
+
*/
|
|
3303
|
+
requestId?: NonEmptyString;
|
|
3304
|
+
/**
|
|
3305
|
+
* Contains an array of runtime details that represents each time a workflow ran for the requested image build version.
|
|
3306
|
+
*/
|
|
3307
|
+
workflowExecutions?: WorkflowExecutionsList;
|
|
3308
|
+
/**
|
|
3309
|
+
* The resource ARN of the image build version for which you requested a list of workflow runtime details.
|
|
3310
|
+
*/
|
|
3311
|
+
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
3312
|
+
/**
|
|
3313
|
+
* The output message from the list action, if applicable.
|
|
3314
|
+
*/
|
|
3315
|
+
message?: ImageBuildMessage;
|
|
3316
|
+
/**
|
|
3317
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
3318
|
+
*/
|
|
3319
|
+
nextToken?: PaginationToken;
|
|
3320
|
+
}
|
|
3321
|
+
export interface ListWorkflowStepExecutionsRequest {
|
|
3322
|
+
/**
|
|
3323
|
+
* The maximum items to return in a request.
|
|
3324
|
+
*/
|
|
3325
|
+
maxResults?: RestrictedInteger;
|
|
3326
|
+
/**
|
|
3327
|
+
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
3328
|
+
*/
|
|
3329
|
+
nextToken?: PaginationToken;
|
|
3330
|
+
/**
|
|
3331
|
+
* The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow.
|
|
3332
|
+
*/
|
|
3333
|
+
workflowExecutionId: WorkflowExecutionId;
|
|
3334
|
+
}
|
|
3335
|
+
export interface ListWorkflowStepExecutionsResponse {
|
|
3336
|
+
/**
|
|
3337
|
+
* The request ID that uniquely identifies this request.
|
|
3338
|
+
*/
|
|
3339
|
+
requestId?: NonEmptyString;
|
|
3340
|
+
/**
|
|
3341
|
+
* Contains an array of runtime details that represents each step in this runtime instance of the workflow.
|
|
3342
|
+
*/
|
|
3343
|
+
steps?: WorkflowStepExecutionsList;
|
|
3344
|
+
/**
|
|
3345
|
+
* The build version ARN for the Image Builder workflow resource that defines the steps for this runtime instance of the workflow.
|
|
3346
|
+
*/
|
|
3347
|
+
workflowBuildVersionArn?: WorkflowBuildVersionArn;
|
|
3348
|
+
/**
|
|
3349
|
+
* The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow.
|
|
3350
|
+
*/
|
|
3351
|
+
workflowExecutionId?: WorkflowExecutionId;
|
|
3352
|
+
/**
|
|
3353
|
+
* The image build version resource ARN that's associated with the specified runtime instance of the workflow.
|
|
3354
|
+
*/
|
|
3355
|
+
imageBuildVersionArn?: ImageBuildVersionArn;
|
|
3356
|
+
/**
|
|
3357
|
+
* The output message from the list action, if applicable.
|
|
3358
|
+
*/
|
|
3359
|
+
message?: ImageBuildMessage;
|
|
3360
|
+
/**
|
|
3361
|
+
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the service has'ot included in this request. Use this token with the next request to retrieve additional objects.
|
|
3362
|
+
*/
|
|
3363
|
+
nextToken?: PaginationToken;
|
|
3364
|
+
}
|
|
2813
3365
|
export interface Logging {
|
|
2814
3366
|
/**
|
|
2815
3367
|
* The Amazon S3 logging configuration.
|
|
@@ -2818,6 +3370,8 @@ declare namespace Imagebuilder {
|
|
|
2818
3370
|
}
|
|
2819
3371
|
export type MaxParallelLaunches = number;
|
|
2820
3372
|
export type NonEmptyString = string;
|
|
3373
|
+
export type NonEmptyStringList = NonEmptyString[];
|
|
3374
|
+
export type NonNegativeDouble = number;
|
|
2821
3375
|
export type NullableBoolean = boolean;
|
|
2822
3376
|
export type OrganizationArn = string;
|
|
2823
3377
|
export type OrganizationArnList = OrganizationArn[];
|
|
@@ -2836,6 +3390,50 @@ declare namespace Imagebuilder {
|
|
|
2836
3390
|
containers?: ContainerList;
|
|
2837
3391
|
}
|
|
2838
3392
|
export type Ownership = "Self"|"Shared"|"Amazon"|"ThirdParty"|string;
|
|
3393
|
+
export type PackageArchitecture = string;
|
|
3394
|
+
export type PackageEpoch = number;
|
|
3395
|
+
export interface PackageVulnerabilityDetails {
|
|
3396
|
+
/**
|
|
3397
|
+
* A unique identifier for this vulnerability.
|
|
3398
|
+
*/
|
|
3399
|
+
vulnerabilityId: VulnerabilityId;
|
|
3400
|
+
/**
|
|
3401
|
+
* The packages that this vulnerability impacts.
|
|
3402
|
+
*/
|
|
3403
|
+
vulnerablePackages?: VulnerablePackageList;
|
|
3404
|
+
/**
|
|
3405
|
+
* The source of the vulnerability information.
|
|
3406
|
+
*/
|
|
3407
|
+
source?: NonEmptyString;
|
|
3408
|
+
/**
|
|
3409
|
+
* CVSS scores for one or more vulnerabilities that Amazon Inspector identified for a package.
|
|
3410
|
+
*/
|
|
3411
|
+
cvss?: CvssScoreList;
|
|
3412
|
+
/**
|
|
3413
|
+
* Vulnerabilities that are often related to the findings for the package.
|
|
3414
|
+
*/
|
|
3415
|
+
relatedVulnerabilities?: VulnerabilityIdList;
|
|
3416
|
+
/**
|
|
3417
|
+
* A link to the source of the vulnerability information.
|
|
3418
|
+
*/
|
|
3419
|
+
sourceUrl?: NonEmptyString;
|
|
3420
|
+
/**
|
|
3421
|
+
* The severity that the vendor assigned to this vulnerability type.
|
|
3422
|
+
*/
|
|
3423
|
+
vendorSeverity?: NonEmptyString;
|
|
3424
|
+
/**
|
|
3425
|
+
* The date and time when this vulnerability was first added to the vendor's database.
|
|
3426
|
+
*/
|
|
3427
|
+
vendorCreatedAt?: DateTimeTimestamp;
|
|
3428
|
+
/**
|
|
3429
|
+
* The date and time when the vendor last updated this vulnerability in their database.
|
|
3430
|
+
*/
|
|
3431
|
+
vendorUpdatedAt?: DateTimeTimestamp;
|
|
3432
|
+
/**
|
|
3433
|
+
* Links to web pages that contain details about the vulnerabilities that Amazon Inspector identified for the package.
|
|
3434
|
+
*/
|
|
3435
|
+
referenceUrls?: NonEmptyStringList;
|
|
3436
|
+
}
|
|
2839
3437
|
export type PaginationToken = string;
|
|
2840
3438
|
export type PipelineExecutionStartCondition = "EXPRESSION_MATCH_ONLY"|"EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"|string;
|
|
2841
3439
|
export type PipelineStatus = "DISABLED"|"ENABLED"|string;
|
|
@@ -2921,6 +3519,22 @@ declare namespace Imagebuilder {
|
|
|
2921
3519
|
imageRecipeArn?: ImageRecipeArn;
|
|
2922
3520
|
}
|
|
2923
3521
|
export type RegionList = NonEmptyString[];
|
|
3522
|
+
export interface Remediation {
|
|
3523
|
+
/**
|
|
3524
|
+
* An object that contains information about the recommended course of action to remediate the finding.
|
|
3525
|
+
*/
|
|
3526
|
+
recommendation?: RemediationRecommendation;
|
|
3527
|
+
}
|
|
3528
|
+
export interface RemediationRecommendation {
|
|
3529
|
+
/**
|
|
3530
|
+
* The recommended course of action to remediate the finding.
|
|
3531
|
+
*/
|
|
3532
|
+
text?: NonEmptyString;
|
|
3533
|
+
/**
|
|
3534
|
+
* A link to more information about the recommended remediation for this vulnerability.
|
|
3535
|
+
*/
|
|
3536
|
+
url?: NonEmptyString;
|
|
3537
|
+
}
|
|
2924
3538
|
export type ResourceName = string;
|
|
2925
3539
|
export type ResourcePolicyDocument = string;
|
|
2926
3540
|
export type ResourceTagMap = {[key: string]: TagValue};
|
|
@@ -2968,7 +3582,27 @@ declare namespace Imagebuilder {
|
|
|
2968
3582
|
pipelineExecutionStartCondition?: PipelineExecutionStartCondition;
|
|
2969
3583
|
}
|
|
2970
3584
|
export type SecurityGroupIds = NonEmptyString[];
|
|
3585
|
+
export type SeverityCountNumber = number;
|
|
3586
|
+
export interface SeverityCounts {
|
|
3587
|
+
/**
|
|
3588
|
+
* The total number of findings across all severity levels for the specified filter.
|
|
3589
|
+
*/
|
|
3590
|
+
all?: SeverityCountNumber;
|
|
3591
|
+
/**
|
|
3592
|
+
* The number of critical severity findings for the specified filter.
|
|
3593
|
+
*/
|
|
3594
|
+
critical?: SeverityCountNumber;
|
|
3595
|
+
/**
|
|
3596
|
+
* The number of high severity findings for the specified filter.
|
|
3597
|
+
*/
|
|
3598
|
+
high?: SeverityCountNumber;
|
|
3599
|
+
/**
|
|
3600
|
+
* The number of medium severity findings for the specified filter.
|
|
3601
|
+
*/
|
|
3602
|
+
medium?: SeverityCountNumber;
|
|
3603
|
+
}
|
|
2971
3604
|
export type SnsTopicArn = string;
|
|
3605
|
+
export type SourceLayerHash = string;
|
|
2972
3606
|
export interface StartImagePipelineExecutionRequest {
|
|
2973
3607
|
/**
|
|
2974
3608
|
* The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke.
|
|
@@ -3090,11 +3724,11 @@ declare namespace Imagebuilder {
|
|
|
3090
3724
|
*/
|
|
3091
3725
|
containerRecipeArn?: ContainerRecipeArn;
|
|
3092
3726
|
/**
|
|
3093
|
-
* The Amazon Resource Name (ARN) of the infrastructure configuration that
|
|
3727
|
+
* The Amazon Resource Name (ARN) of the infrastructure configuration that Image Builder uses to build images that this image pipeline has updated.
|
|
3094
3728
|
*/
|
|
3095
3729
|
infrastructureConfigurationArn: InfrastructureConfigurationArn;
|
|
3096
3730
|
/**
|
|
3097
|
-
* The Amazon Resource Name (ARN) of the distribution configuration that
|
|
3731
|
+
* The Amazon Resource Name (ARN) of the distribution configuration that Image Builder uses to configure and distribute images that this image pipeline has updated.
|
|
3098
3732
|
*/
|
|
3099
3733
|
distributionConfigurationArn?: DistributionConfigurationArn;
|
|
3100
3734
|
/**
|
|
@@ -3102,7 +3736,7 @@ declare namespace Imagebuilder {
|
|
|
3102
3736
|
*/
|
|
3103
3737
|
imageTestsConfiguration?: ImageTestsConfiguration;
|
|
3104
3738
|
/**
|
|
3105
|
-
*
|
|
3739
|
+
* Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
|
|
3106
3740
|
*/
|
|
3107
3741
|
enhancedImageMetadataEnabled?: NullableBoolean;
|
|
3108
3742
|
/**
|
|
@@ -3117,6 +3751,10 @@ declare namespace Imagebuilder {
|
|
|
3117
3751
|
* The idempotency token used to make this request idempotent.
|
|
3118
3752
|
*/
|
|
3119
3753
|
clientToken: ClientToken;
|
|
3754
|
+
/**
|
|
3755
|
+
* Contains settings for vulnerability scans.
|
|
3756
|
+
*/
|
|
3757
|
+
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
3120
3758
|
}
|
|
3121
3759
|
export interface UpdateImagePipelineResponse {
|
|
3122
3760
|
/**
|
|
@@ -3203,6 +3841,171 @@ declare namespace Imagebuilder {
|
|
|
3203
3841
|
export type Uri = string;
|
|
3204
3842
|
export type UserDataOverride = string;
|
|
3205
3843
|
export type VersionNumber = string;
|
|
3844
|
+
export type VulnerabilityId = string;
|
|
3845
|
+
export interface VulnerabilityIdAggregation {
|
|
3846
|
+
/**
|
|
3847
|
+
* The vulnerability Id for this set of counts.
|
|
3848
|
+
*/
|
|
3849
|
+
vulnerabilityId?: NonEmptyString;
|
|
3850
|
+
/**
|
|
3851
|
+
* Counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified vulnerability.
|
|
3852
|
+
*/
|
|
3853
|
+
severityCounts?: SeverityCounts;
|
|
3854
|
+
}
|
|
3855
|
+
export type VulnerabilityIdList = VulnerabilityId[];
|
|
3856
|
+
export interface VulnerablePackage {
|
|
3857
|
+
/**
|
|
3858
|
+
* The name of the vulnerable package.
|
|
3859
|
+
*/
|
|
3860
|
+
name?: NonEmptyString;
|
|
3861
|
+
/**
|
|
3862
|
+
* The version of the vulnerable package.
|
|
3863
|
+
*/
|
|
3864
|
+
version?: NonEmptyString;
|
|
3865
|
+
/**
|
|
3866
|
+
* The source layer hash of the vulnerable package.
|
|
3867
|
+
*/
|
|
3868
|
+
sourceLayerHash?: SourceLayerHash;
|
|
3869
|
+
/**
|
|
3870
|
+
* The epoch of the vulnerable package.
|
|
3871
|
+
*/
|
|
3872
|
+
epoch?: PackageEpoch;
|
|
3873
|
+
/**
|
|
3874
|
+
* The release of the vulnerable package.
|
|
3875
|
+
*/
|
|
3876
|
+
release?: NonEmptyString;
|
|
3877
|
+
/**
|
|
3878
|
+
* The architecture of the vulnerable package.
|
|
3879
|
+
*/
|
|
3880
|
+
arch?: PackageArchitecture;
|
|
3881
|
+
/**
|
|
3882
|
+
* The package manager of the vulnerable package.
|
|
3883
|
+
*/
|
|
3884
|
+
packageManager?: NonEmptyString;
|
|
3885
|
+
/**
|
|
3886
|
+
* The file path of the vulnerable package.
|
|
3887
|
+
*/
|
|
3888
|
+
filePath?: NonEmptyString;
|
|
3889
|
+
/**
|
|
3890
|
+
* The version of the package that contains the vulnerability fix.
|
|
3891
|
+
*/
|
|
3892
|
+
fixedInVersion?: NonEmptyString;
|
|
3893
|
+
/**
|
|
3894
|
+
* The code to run in your environment to update packages with a fix available.
|
|
3895
|
+
*/
|
|
3896
|
+
remediation?: NonEmptyString;
|
|
3897
|
+
}
|
|
3898
|
+
export type VulnerablePackageList = VulnerablePackage[];
|
|
3899
|
+
export type WorkflowBuildVersionArn = string;
|
|
3900
|
+
export type WorkflowExecutionId = string;
|
|
3901
|
+
export type WorkflowExecutionMessage = string;
|
|
3902
|
+
export interface WorkflowExecutionMetadata {
|
|
3903
|
+
/**
|
|
3904
|
+
* The Amazon Resource Name (ARN) of the workflow resource build version that ran.
|
|
3905
|
+
*/
|
|
3906
|
+
workflowBuildVersionArn?: WorkflowBuildVersionArn;
|
|
3907
|
+
/**
|
|
3908
|
+
* Unique identifier that Image Builder assigns to keep track of runtime resources each time it runs a workflow.
|
|
3909
|
+
*/
|
|
3910
|
+
workflowExecutionId?: WorkflowExecutionId;
|
|
3911
|
+
/**
|
|
3912
|
+
* Indicates what type of workflow that Image Builder ran for this runtime instance of the workflow.
|
|
3913
|
+
*/
|
|
3914
|
+
type?: WorkflowType;
|
|
3915
|
+
/**
|
|
3916
|
+
* The current runtime status for this workflow.
|
|
3917
|
+
*/
|
|
3918
|
+
status?: WorkflowExecutionStatus;
|
|
3919
|
+
/**
|
|
3920
|
+
* The runtime output message from the workflow, if applicable.
|
|
3921
|
+
*/
|
|
3922
|
+
message?: WorkflowExecutionMessage;
|
|
3923
|
+
/**
|
|
3924
|
+
* The total number of steps in the workflow. This should equal the sum of the step counts for steps that succeeded, were skipped, and failed.
|
|
3925
|
+
*/
|
|
3926
|
+
totalStepCount?: WorkflowStepCount;
|
|
3927
|
+
/**
|
|
3928
|
+
* A runtime count for the number of steps in the workflow that ran successfully.
|
|
3929
|
+
*/
|
|
3930
|
+
totalStepsSucceeded?: WorkflowStepCount;
|
|
3931
|
+
/**
|
|
3932
|
+
* A runtime count for the number of steps in the workflow that failed.
|
|
3933
|
+
*/
|
|
3934
|
+
totalStepsFailed?: WorkflowStepCount;
|
|
3935
|
+
/**
|
|
3936
|
+
* A runtime count for the number of steps in the workflow that were skipped.
|
|
3937
|
+
*/
|
|
3938
|
+
totalStepsSkipped?: WorkflowStepCount;
|
|
3939
|
+
/**
|
|
3940
|
+
* The timestamp when the runtime instance of this workflow started.
|
|
3941
|
+
*/
|
|
3942
|
+
startTime?: DateTime;
|
|
3943
|
+
/**
|
|
3944
|
+
* The timestamp when this runtime instance of the workflow finished.
|
|
3945
|
+
*/
|
|
3946
|
+
endTime?: DateTime;
|
|
3947
|
+
}
|
|
3948
|
+
export type WorkflowExecutionStatus = "PENDING"|"SKIPPED"|"RUNNING"|"COMPLETED"|"FAILED"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_COMPLETED"|string;
|
|
3949
|
+
export type WorkflowExecutionsList = WorkflowExecutionMetadata[];
|
|
3950
|
+
export type WorkflowStepAction = string;
|
|
3951
|
+
export type WorkflowStepCount = number;
|
|
3952
|
+
export type WorkflowStepDescription = string;
|
|
3953
|
+
export type WorkflowStepExecutionId = string;
|
|
3954
|
+
export type WorkflowStepExecutionRollbackStatus = "RUNNING"|"COMPLETED"|"SKIPPED"|"FAILED"|string;
|
|
3955
|
+
export type WorkflowStepExecutionStatus = "PENDING"|"SKIPPED"|"RUNNING"|"COMPLETED"|"FAILED"|string;
|
|
3956
|
+
export type WorkflowStepExecutionsList = WorkflowStepMetadata[];
|
|
3957
|
+
export type WorkflowStepInputs = string;
|
|
3958
|
+
export type WorkflowStepMessage = string;
|
|
3959
|
+
export interface WorkflowStepMetadata {
|
|
3960
|
+
/**
|
|
3961
|
+
* A unique identifier for the workflow step, assigned at runtime.
|
|
3962
|
+
*/
|
|
3963
|
+
stepExecutionId?: WorkflowStepExecutionId;
|
|
3964
|
+
/**
|
|
3965
|
+
* The name of the workflow step.
|
|
3966
|
+
*/
|
|
3967
|
+
name?: WorkflowStepName;
|
|
3968
|
+
/**
|
|
3969
|
+
* Description of the workflow step.
|
|
3970
|
+
*/
|
|
3971
|
+
description?: WorkflowStepDescription;
|
|
3972
|
+
/**
|
|
3973
|
+
* The step action name.
|
|
3974
|
+
*/
|
|
3975
|
+
action?: WorkflowStepAction;
|
|
3976
|
+
/**
|
|
3977
|
+
* Runtime status for the workflow step.
|
|
3978
|
+
*/
|
|
3979
|
+
status?: WorkflowStepExecutionStatus;
|
|
3980
|
+
/**
|
|
3981
|
+
* Reports on the rollback status of the step, if applicable.
|
|
3982
|
+
*/
|
|
3983
|
+
rollbackStatus?: WorkflowStepExecutionRollbackStatus;
|
|
3984
|
+
/**
|
|
3985
|
+
* Detailed output message that the workflow step provides at runtime.
|
|
3986
|
+
*/
|
|
3987
|
+
message?: WorkflowStepMessage;
|
|
3988
|
+
/**
|
|
3989
|
+
* Input parameters that Image Builder provides for the workflow step.
|
|
3990
|
+
*/
|
|
3991
|
+
inputs?: WorkflowStepInputs;
|
|
3992
|
+
/**
|
|
3993
|
+
* The file names that the workflow step created as output for this runtime instance of the workflow.
|
|
3994
|
+
*/
|
|
3995
|
+
outputs?: WorkflowStepOutputs;
|
|
3996
|
+
/**
|
|
3997
|
+
* The timestamp when the workflow step started.
|
|
3998
|
+
*/
|
|
3999
|
+
startTime?: DateTime;
|
|
4000
|
+
/**
|
|
4001
|
+
* The timestamp when the workflow step finished.
|
|
4002
|
+
*/
|
|
4003
|
+
endTime?: DateTime;
|
|
4004
|
+
}
|
|
4005
|
+
export type WorkflowStepName = string;
|
|
4006
|
+
export type WorkflowStepOutputs = string;
|
|
4007
|
+
export type WorkflowStepTimeoutSecondsInteger = number;
|
|
4008
|
+
export type WorkflowType = "BUILD"|"TEST"|"DISTRIBUTION"|string;
|
|
3206
4009
|
/**
|
|
3207
4010
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
3208
4011
|
*/
|