aws-sdk-imagebuilder 1.0.0 → 1.1.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +112 -90
- data/lib/aws-sdk-imagebuilder/client_api.rb +15 -11
- data/lib/aws-sdk-imagebuilder/types.rb +209 -160
- metadata +2 -2
@@ -15,6 +15,7 @@ module Aws::Imagebuilder
|
|
15
15
|
Ami = Shapes::StructureShape.new(name: 'Ami')
|
16
16
|
AmiDistributionConfiguration = Shapes::StructureShape.new(name: 'AmiDistributionConfiguration')
|
17
17
|
AmiList = Shapes::ListShape.new(name: 'AmiList')
|
18
|
+
AmiNameString = Shapes::StringShape.new(name: 'AmiNameString')
|
18
19
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
19
20
|
ArnList = Shapes::ListShape.new(name: 'ArnList')
|
20
21
|
CallRateLimitExceededException = Shapes::StructureShape.new(name: 'CallRateLimitExceededException')
|
@@ -33,6 +34,7 @@ module Aws::Imagebuilder
|
|
33
34
|
ComponentType = Shapes::StringShape.new(name: 'ComponentType')
|
34
35
|
ComponentVersion = Shapes::StructureShape.new(name: 'ComponentVersion')
|
35
36
|
ComponentVersionArn = Shapes::StringShape.new(name: 'ComponentVersionArn')
|
37
|
+
ComponentVersionArnOrBuildVersionArn = Shapes::StringShape.new(name: 'ComponentVersionArnOrBuildVersionArn')
|
36
38
|
ComponentVersionList = Shapes::ListShape.new(name: 'ComponentVersionList')
|
37
39
|
CreateComponentRequest = Shapes::StructureShape.new(name: 'CreateComponentRequest')
|
38
40
|
CreateComponentResponse = Shapes::StructureShape.new(name: 'CreateComponentResponse')
|
@@ -70,6 +72,7 @@ module Aws::Imagebuilder
|
|
70
72
|
EbsIopsInteger = Shapes::IntegerShape.new(name: 'EbsIopsInteger')
|
71
73
|
EbsVolumeSizeInteger = Shapes::IntegerShape.new(name: 'EbsVolumeSizeInteger')
|
72
74
|
EbsVolumeType = Shapes::StringShape.new(name: 'EbsVolumeType')
|
75
|
+
EmptyString = Shapes::StringShape.new(name: 'EmptyString')
|
73
76
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
74
77
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
75
78
|
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
@@ -178,6 +181,7 @@ module Aws::Imagebuilder
|
|
178
181
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
179
182
|
ServiceException = Shapes::StructureShape.new(name: 'ServiceException')
|
180
183
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
184
|
+
SnsTopicArn = Shapes::StringShape.new(name: 'SnsTopicArn')
|
181
185
|
StartImagePipelineExecutionRequest = Shapes::StructureShape.new(name: 'StartImagePipelineExecutionRequest')
|
182
186
|
StartImagePipelineExecutionResponse = Shapes::StructureShape.new(name: 'StartImagePipelineExecutionResponse')
|
183
187
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
@@ -207,7 +211,7 @@ module Aws::Imagebuilder
|
|
207
211
|
Ami.add_member(:state, Shapes::ShapeRef.new(shape: ImageState, location_name: "state"))
|
208
212
|
Ami.struct_class = Types::Ami
|
209
213
|
|
210
|
-
AmiDistributionConfiguration.add_member(:name, Shapes::ShapeRef.new(shape:
|
214
|
+
AmiDistributionConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: AmiNameString, location_name: "name"))
|
211
215
|
AmiDistributionConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
212
216
|
AmiDistributionConfiguration.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
|
213
217
|
AmiDistributionConfiguration.add_member(:launch_permission, Shapes::ShapeRef.new(shape: LaunchPermissionConfiguration, location_name: "launchPermission"))
|
@@ -221,7 +225,7 @@ module Aws::Imagebuilder
|
|
221
225
|
CallRateLimitExceededException.struct_class = Types::CallRateLimitExceededException
|
222
226
|
|
223
227
|
CancelImageCreationRequest.add_member(:image_build_version_arn, Shapes::ShapeRef.new(shape: ImageBuildVersionArn, required: true, location_name: "imageBuildVersionArn"))
|
224
|
-
CancelImageCreationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken"))
|
228
|
+
CancelImageCreationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
225
229
|
CancelImageCreationRequest.struct_class = Types::CancelImageCreationRequest
|
226
230
|
|
227
231
|
CancelImageCreationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
|
@@ -247,7 +251,7 @@ module Aws::Imagebuilder
|
|
247
251
|
Component.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
248
252
|
Component.struct_class = Types::Component
|
249
253
|
|
250
|
-
ComponentConfiguration.add_member(:component_arn, Shapes::ShapeRef.new(shape:
|
254
|
+
ComponentConfiguration.add_member(:component_arn, Shapes::ShapeRef.new(shape: ComponentVersionArnOrBuildVersionArn, required: true, location_name: "componentArn"))
|
251
255
|
ComponentConfiguration.struct_class = Types::ComponentConfiguration
|
252
256
|
|
253
257
|
ComponentConfigurationList.member = Shapes::ShapeRef.new(shape: ComponentConfiguration)
|
@@ -361,7 +365,7 @@ module Aws::Imagebuilder
|
|
361
365
|
CreateInfrastructureConfigurationRequest.add_member(:logging, Shapes::ShapeRef.new(shape: Logging, location_name: "logging"))
|
362
366
|
CreateInfrastructureConfigurationRequest.add_member(:key_pair, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "keyPair"))
|
363
367
|
CreateInfrastructureConfigurationRequest.add_member(:terminate_instance_on_failure, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "terminateInstanceOnFailure"))
|
364
|
-
CreateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape:
|
368
|
+
CreateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
|
365
369
|
CreateInfrastructureConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
366
370
|
CreateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
367
371
|
CreateInfrastructureConfigurationRequest.struct_class = Types::CreateInfrastructureConfigurationRequest
|
@@ -664,7 +668,7 @@ module Aws::Imagebuilder
|
|
664
668
|
InstanceBlockDeviceMapping.add_member(:device_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "deviceName"))
|
665
669
|
InstanceBlockDeviceMapping.add_member(:ebs, Shapes::ShapeRef.new(shape: EbsInstanceBlockDeviceSpecification, location_name: "ebs"))
|
666
670
|
InstanceBlockDeviceMapping.add_member(:virtual_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "virtualName"))
|
667
|
-
InstanceBlockDeviceMapping.add_member(:no_device, Shapes::ShapeRef.new(shape:
|
671
|
+
InstanceBlockDeviceMapping.add_member(:no_device, Shapes::ShapeRef.new(shape: EmptyString, location_name: "noDevice"))
|
668
672
|
InstanceBlockDeviceMapping.struct_class = Types::InstanceBlockDeviceMapping
|
669
673
|
|
670
674
|
InstanceBlockDeviceMappings.member = Shapes::ShapeRef.new(shape: InstanceBlockDeviceMapping)
|
@@ -735,7 +739,7 @@ module Aws::Imagebuilder
|
|
735
739
|
ListImageBuildVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
|
736
740
|
ListImageBuildVersionsResponse.struct_class = Types::ListImageBuildVersionsResponse
|
737
741
|
|
738
|
-
ListImagePipelineImagesRequest.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, location_name: "imagePipelineArn"))
|
742
|
+
ListImagePipelineImagesRequest.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, required: true, location_name: "imagePipelineArn"))
|
739
743
|
ListImagePipelineImagesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
|
740
744
|
ListImagePipelineImagesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
|
741
745
|
ListImagePipelineImagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
|
@@ -882,7 +886,7 @@ module Aws::Imagebuilder
|
|
882
886
|
|
883
887
|
UpdateDistributionConfigurationRequest.add_member(:distribution_configuration_arn, Shapes::ShapeRef.new(shape: DistributionConfigurationArn, required: true, location_name: "distributionConfigurationArn"))
|
884
888
|
UpdateDistributionConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
885
|
-
UpdateDistributionConfigurationRequest.add_member(:distributions, Shapes::ShapeRef.new(shape: DistributionList, location_name: "distributions"))
|
889
|
+
UpdateDistributionConfigurationRequest.add_member(:distributions, Shapes::ShapeRef.new(shape: DistributionList, required: true, location_name: "distributions"))
|
886
890
|
UpdateDistributionConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
887
891
|
UpdateDistributionConfigurationRequest.struct_class = Types::UpdateDistributionConfigurationRequest
|
888
892
|
|
@@ -893,8 +897,8 @@ module Aws::Imagebuilder
|
|
893
897
|
|
894
898
|
UpdateImagePipelineRequest.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, required: true, location_name: "imagePipelineArn"))
|
895
899
|
UpdateImagePipelineRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
896
|
-
UpdateImagePipelineRequest.add_member(:image_recipe_arn, Shapes::ShapeRef.new(shape: ImageRecipeArn, location_name: "imageRecipeArn"))
|
897
|
-
UpdateImagePipelineRequest.add_member(:infrastructure_configuration_arn, Shapes::ShapeRef.new(shape: InfrastructureConfigurationArn, location_name: "infrastructureConfigurationArn"))
|
900
|
+
UpdateImagePipelineRequest.add_member(:image_recipe_arn, Shapes::ShapeRef.new(shape: ImageRecipeArn, required: true, location_name: "imageRecipeArn"))
|
901
|
+
UpdateImagePipelineRequest.add_member(:infrastructure_configuration_arn, Shapes::ShapeRef.new(shape: InfrastructureConfigurationArn, required: true, location_name: "infrastructureConfigurationArn"))
|
898
902
|
UpdateImagePipelineRequest.add_member(:distribution_configuration_arn, Shapes::ShapeRef.new(shape: DistributionConfigurationArn, location_name: "distributionConfigurationArn"))
|
899
903
|
UpdateImagePipelineRequest.add_member(:image_tests_configuration, Shapes::ShapeRef.new(shape: ImageTestsConfiguration, location_name: "imageTestsConfiguration"))
|
900
904
|
UpdateImagePipelineRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, location_name: "schedule"))
|
@@ -910,13 +914,13 @@ module Aws::Imagebuilder
|
|
910
914
|
UpdateInfrastructureConfigurationRequest.add_member(:infrastructure_configuration_arn, Shapes::ShapeRef.new(shape: InfrastructureConfigurationArn, required: true, location_name: "infrastructureConfigurationArn"))
|
911
915
|
UpdateInfrastructureConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
912
916
|
UpdateInfrastructureConfigurationRequest.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeList, location_name: "instanceTypes"))
|
913
|
-
UpdateInfrastructureConfigurationRequest.add_member(:instance_profile_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "instanceProfileName"))
|
917
|
+
UpdateInfrastructureConfigurationRequest.add_member(:instance_profile_name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "instanceProfileName"))
|
914
918
|
UpdateInfrastructureConfigurationRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
|
915
919
|
UpdateInfrastructureConfigurationRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "subnetId"))
|
916
920
|
UpdateInfrastructureConfigurationRequest.add_member(:logging, Shapes::ShapeRef.new(shape: Logging, location_name: "logging"))
|
917
921
|
UpdateInfrastructureConfigurationRequest.add_member(:key_pair, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "keyPair"))
|
918
922
|
UpdateInfrastructureConfigurationRequest.add_member(:terminate_instance_on_failure, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "terminateInstanceOnFailure"))
|
919
|
-
UpdateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape:
|
923
|
+
UpdateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
|
920
924
|
UpdateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
921
925
|
UpdateInfrastructureConfigurationRequest.struct_class = Types::UpdateInfrastructureConfigurationRequest
|
922
926
|
|
@@ -11,7 +11,7 @@ module Aws::Imagebuilder
|
|
11
11
|
# Details of an EC2 AMI.
|
12
12
|
#
|
13
13
|
# @!attribute [rw] region
|
14
|
-
# The
|
14
|
+
# The AWS Region of the EC2 AMI.
|
15
15
|
# @return [String]
|
16
16
|
#
|
17
17
|
# @!attribute [rw] image
|
@@ -27,7 +27,7 @@ module Aws::Imagebuilder
|
|
27
27
|
# @return [String]
|
28
28
|
#
|
29
29
|
# @!attribute [rw] state
|
30
|
-
# Image state shows the
|
30
|
+
# Image state shows the image status and the reason for that status.
|
31
31
|
# @return [Types::ImageState]
|
32
32
|
#
|
33
33
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Ami AWS API Documentation
|
@@ -41,13 +41,13 @@ module Aws::Imagebuilder
|
|
41
41
|
include Aws::Structure
|
42
42
|
end
|
43
43
|
|
44
|
-
# Define and configure the
|
44
|
+
# Define and configure the output AMIs of the pipeline.
|
45
45
|
#
|
46
46
|
# @note When making an API call, you may pass AmiDistributionConfiguration
|
47
47
|
# data as a hash:
|
48
48
|
#
|
49
49
|
# {
|
50
|
-
# name: "
|
50
|
+
# name: "AmiNameString",
|
51
51
|
# description: "NonEmptyString",
|
52
52
|
# ami_tags: {
|
53
53
|
# "TagKey" => "TagValue",
|
@@ -67,7 +67,7 @@ module Aws::Imagebuilder
|
|
67
67
|
# @return [String]
|
68
68
|
#
|
69
69
|
# @!attribute [rw] ami_tags
|
70
|
-
# The tags to apply to AMIs distributed to this
|
70
|
+
# The tags to apply to AMIs distributed to this Region.
|
71
71
|
# @return [Hash<String,String>]
|
72
72
|
#
|
73
73
|
# @!attribute [rw] launch_permission
|
@@ -107,12 +107,15 @@ module Aws::Imagebuilder
|
|
107
107
|
# }
|
108
108
|
#
|
109
109
|
# @!attribute [rw] image_build_version_arn
|
110
|
-
# The Amazon Resource Name (ARN) of the image whose creation you
|
110
|
+
# The Amazon Resource Name (ARN) of the image whose creation you want
|
111
111
|
# to cancel.
|
112
112
|
# @return [String]
|
113
113
|
#
|
114
114
|
# @!attribute [rw] client_token
|
115
115
|
# The idempotency token used to make this request idempotent.
|
116
|
+
#
|
117
|
+
# **A suitable default value is auto-generated.** You should normally
|
118
|
+
# not need to pass this option.
|
116
119
|
# @return [String]
|
117
120
|
#
|
118
121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CancelImageCreationRequest AWS API Documentation
|
@@ -240,7 +243,7 @@ module Aws::Imagebuilder
|
|
240
243
|
# data as a hash:
|
241
244
|
#
|
242
245
|
# {
|
243
|
-
# component_arn: "
|
246
|
+
# component_arn: "ComponentVersionArnOrBuildVersionArn", # required
|
244
247
|
# }
|
245
248
|
#
|
246
249
|
# @!attribute [rw] component_arn
|
@@ -254,7 +257,7 @@ module Aws::Imagebuilder
|
|
254
257
|
include Aws::Structure
|
255
258
|
end
|
256
259
|
|
257
|
-
# A high
|
260
|
+
# A high-level summary of a component.
|
258
261
|
#
|
259
262
|
# @!attribute [rw] arn
|
260
263
|
# The Amazon Resource Name (ARN) of the component.
|
@@ -313,7 +316,7 @@ module Aws::Imagebuilder
|
|
313
316
|
include Aws::Structure
|
314
317
|
end
|
315
318
|
|
316
|
-
# A high
|
319
|
+
# A high-level overview of a component semantic version.
|
317
320
|
#
|
318
321
|
# @!attribute [rw] arn
|
319
322
|
# The Amazon Resource Name (ARN) of the component.
|
@@ -385,32 +388,37 @@ module Aws::Imagebuilder
|
|
385
388
|
# @return [String]
|
386
389
|
#
|
387
390
|
# @!attribute [rw] semantic_version
|
388
|
-
# The semantic version of the component. This version
|
389
|
-
# semantic version syntax.
|
390
|
-
# versioned like software 2.0.1 or date
|
391
|
+
# The semantic version of the component. This version follows the
|
392
|
+
# semantic version syntax. For example, major.minor.patch. This could
|
393
|
+
# be versioned like software (2.0.1) or like a date (2019.12.01).
|
391
394
|
# @return [String]
|
392
395
|
#
|
393
396
|
# @!attribute [rw] description
|
394
|
-
#
|
397
|
+
# The description of the component. Describes the contents of the
|
395
398
|
# component.
|
396
399
|
# @return [String]
|
397
400
|
#
|
398
401
|
# @!attribute [rw] change_description
|
399
|
-
#
|
400
|
-
# been made in this version
|
401
|
-
#
|
402
|
+
# The change description of the component. Describes what change has
|
403
|
+
# been made in this version, or what makes this version different from
|
404
|
+
# other versions of this component.
|
402
405
|
# @return [String]
|
403
406
|
#
|
404
407
|
# @!attribute [rw] platform
|
405
|
-
#
|
408
|
+
# The platform of the component.
|
406
409
|
# @return [String]
|
407
410
|
#
|
408
411
|
# @!attribute [rw] data
|
409
|
-
#
|
412
|
+
# The data of the component. Used to specify the data inline. Either
|
413
|
+
# `data` or `uri` can be used to specify the data within the
|
414
|
+
# component.
|
410
415
|
# @return [String]
|
411
416
|
#
|
412
417
|
# @!attribute [rw] uri
|
413
|
-
#
|
418
|
+
# The uri of the component. Must be an S3 URL and the requester must
|
419
|
+
# have permission to access the S3 bucket. If you use S3, you can
|
420
|
+
# specify component content up to your service quota. Either `data` or
|
421
|
+
# `uri` can be used to specify the data within the component.
|
414
422
|
# @return [String]
|
415
423
|
#
|
416
424
|
# @!attribute [rw] kms_key_id
|
@@ -418,11 +426,11 @@ module Aws::Imagebuilder
|
|
418
426
|
# @return [String]
|
419
427
|
#
|
420
428
|
# @!attribute [rw] tags
|
421
|
-
#
|
429
|
+
# The tags of the component.
|
422
430
|
# @return [Hash<String,String>]
|
423
431
|
#
|
424
432
|
# @!attribute [rw] client_token
|
425
|
-
#
|
433
|
+
# The idempotency token of the component.
|
426
434
|
#
|
427
435
|
# **A suitable default value is auto-generated.** You should normally
|
428
436
|
# not need to pass this option.
|
@@ -445,15 +453,15 @@ module Aws::Imagebuilder
|
|
445
453
|
end
|
446
454
|
|
447
455
|
# @!attribute [rw] request_id
|
448
|
-
#
|
456
|
+
# The request ID that uniquely identifies this request.
|
449
457
|
# @return [String]
|
450
458
|
#
|
451
459
|
# @!attribute [rw] client_token
|
452
|
-
#
|
460
|
+
# The idempotency token used to make this request idempotent.
|
453
461
|
# @return [String]
|
454
462
|
#
|
455
463
|
# @!attribute [rw] component_build_version_arn
|
456
|
-
#
|
464
|
+
# The Amazon Resource Name (ARN) of the component that was created by
|
457
465
|
# this request.
|
458
466
|
# @return [String]
|
459
467
|
#
|
@@ -476,7 +484,7 @@ module Aws::Imagebuilder
|
|
476
484
|
# {
|
477
485
|
# region: "NonEmptyString", # required
|
478
486
|
# ami_distribution_configuration: {
|
479
|
-
# name: "
|
487
|
+
# name: "AmiNameString",
|
480
488
|
# description: "NonEmptyString",
|
481
489
|
# ami_tags: {
|
482
490
|
# "TagKey" => "TagValue",
|
@@ -669,7 +677,7 @@ module Aws::Imagebuilder
|
|
669
677
|
# semantic_version: "VersionNumber", # required
|
670
678
|
# components: [ # required
|
671
679
|
# {
|
672
|
-
# component_arn: "
|
680
|
+
# component_arn: "ComponentVersionArnOrBuildVersionArn", # required
|
673
681
|
# },
|
674
682
|
# ],
|
675
683
|
# parent_image: "NonEmptyString", # required
|
@@ -686,7 +694,7 @@ module Aws::Imagebuilder
|
|
686
694
|
# volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
|
687
695
|
# },
|
688
696
|
# virtual_name: "NonEmptyString",
|
689
|
-
# no_device: "
|
697
|
+
# no_device: "EmptyString",
|
690
698
|
# },
|
691
699
|
# ],
|
692
700
|
# tags: {
|
@@ -785,7 +793,7 @@ module Aws::Imagebuilder
|
|
785
793
|
#
|
786
794
|
# @!attribute [rw] image_recipe_arn
|
787
795
|
# The Amazon Resource Name (ARN) of the image recipe that defines how
|
788
|
-
# images are configured, tested and assessed.
|
796
|
+
# images are configured, tested, and assessed.
|
789
797
|
# @return [String]
|
790
798
|
#
|
791
799
|
# @!attribute [rw] distribution_configuration_arn
|
@@ -866,7 +874,7 @@ module Aws::Imagebuilder
|
|
866
874
|
# },
|
867
875
|
# key_pair: "NonEmptyString",
|
868
876
|
# terminate_instance_on_failure: false,
|
869
|
-
# sns_topic_arn: "
|
877
|
+
# sns_topic_arn: "SnsTopicArn",
|
870
878
|
# tags: {
|
871
879
|
# "TagKey" => "TagValue",
|
872
880
|
# },
|
@@ -882,8 +890,8 @@ module Aws::Imagebuilder
|
|
882
890
|
# @return [String]
|
883
891
|
#
|
884
892
|
# @!attribute [rw] instance_types
|
885
|
-
# The instance types of the infrastructure configuration. You
|
886
|
-
# specify one or more instance types to use for this build
|
893
|
+
# The instance types of the infrastructure configuration. You can
|
894
|
+
# specify one or more instance types to use for this build. The
|
887
895
|
# service will pick one of these instance types based on availability.
|
888
896
|
# @return [Array<String>]
|
889
897
|
#
|
@@ -898,8 +906,8 @@ module Aws::Imagebuilder
|
|
898
906
|
# @return [Array<String>]
|
899
907
|
#
|
900
908
|
# @!attribute [rw] subnet_id
|
901
|
-
# The subnet ID to place the instance used to customize your
|
902
|
-
#
|
909
|
+
# The subnet ID in which to place the instance used to customize your
|
910
|
+
# EC2 AMI.
|
903
911
|
# @return [String]
|
904
912
|
#
|
905
913
|
# @!attribute [rw] logging
|
@@ -908,14 +916,14 @@ module Aws::Imagebuilder
|
|
908
916
|
#
|
909
917
|
# @!attribute [rw] key_pair
|
910
918
|
# The key pair of the infrastructure configuration. This can be used
|
911
|
-
# to log
|
919
|
+
# to log on to and debug the instance used to create your image.
|
912
920
|
# @return [String]
|
913
921
|
#
|
914
922
|
# @!attribute [rw] terminate_instance_on_failure
|
915
923
|
# The terminate instance on failure setting of the infrastructure
|
916
|
-
# configuration. Set to false if you
|
917
|
-
#
|
918
|
-
#
|
924
|
+
# configuration. Set to false if you want Image Builder to retain the
|
925
|
+
# instance used to configure your AMI if the build or test phase of
|
926
|
+
# your workflow fails.
|
919
927
|
# @return [Boolean]
|
920
928
|
#
|
921
929
|
# @!attribute [rw] sns_topic_arn
|
@@ -1184,13 +1192,15 @@ module Aws::Imagebuilder
|
|
1184
1192
|
include Aws::Structure
|
1185
1193
|
end
|
1186
1194
|
|
1195
|
+
# Defines the settings for a specific Region.
|
1196
|
+
#
|
1187
1197
|
# @note When making an API call, you may pass Distribution
|
1188
1198
|
# data as a hash:
|
1189
1199
|
#
|
1190
1200
|
# {
|
1191
1201
|
# region: "NonEmptyString", # required
|
1192
1202
|
# ami_distribution_configuration: {
|
1193
|
-
# name: "
|
1203
|
+
# name: "AmiNameString",
|
1194
1204
|
# description: "NonEmptyString",
|
1195
1205
|
# ami_tags: {
|
1196
1206
|
# "TagKey" => "TagValue",
|
@@ -1204,12 +1214,17 @@ module Aws::Imagebuilder
|
|
1204
1214
|
# }
|
1205
1215
|
#
|
1206
1216
|
# @!attribute [rw] region
|
1217
|
+
# The target Region.
|
1207
1218
|
# @return [String]
|
1208
1219
|
#
|
1209
1220
|
# @!attribute [rw] ami_distribution_configuration
|
1221
|
+
# The specific AMI settings (for example, launch permissions, AMI
|
1222
|
+
# tags).
|
1210
1223
|
# @return [Types::AmiDistributionConfiguration]
|
1211
1224
|
#
|
1212
1225
|
# @!attribute [rw] license_configuration_arns
|
1226
|
+
# The License Manager Configuration to associate with the AMI in the
|
1227
|
+
# specified Region.
|
1213
1228
|
# @return [Array<String>]
|
1214
1229
|
#
|
1215
1230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Distribution AWS API Documentation
|
@@ -1269,7 +1284,7 @@ module Aws::Imagebuilder
|
|
1269
1284
|
include Aws::Structure
|
1270
1285
|
end
|
1271
1286
|
|
1272
|
-
# A high
|
1287
|
+
# A high-level overview of a distribution configuration.
|
1273
1288
|
#
|
1274
1289
|
# @!attribute [rw] arn
|
1275
1290
|
# The Amazon Resource Name (ARN) of the distribution configuration.
|
@@ -1307,7 +1322,7 @@ module Aws::Imagebuilder
|
|
1307
1322
|
include Aws::Structure
|
1308
1323
|
end
|
1309
1324
|
|
1310
|
-
# EBS
|
1325
|
+
# Amazon EBS-specific block device mapping specifications.
|
1311
1326
|
#
|
1312
1327
|
# @note When making an API call, you may pass EbsInstanceBlockDeviceSpecification
|
1313
1328
|
# data as a hash:
|
@@ -1363,6 +1378,11 @@ module Aws::Imagebuilder
|
|
1363
1378
|
include Aws::Structure
|
1364
1379
|
end
|
1365
1380
|
|
1381
|
+
# A filter name and value pair that is used to return a more specific
|
1382
|
+
# list of results from a list operation. Filters can be used to match a
|
1383
|
+
# set of resources by specific criteria, such as tags, attributes, or
|
1384
|
+
# IDs.
|
1385
|
+
#
|
1366
1386
|
# @note When making an API call, you may pass Filter
|
1367
1387
|
# data as a hash:
|
1368
1388
|
#
|
@@ -1372,9 +1392,11 @@ module Aws::Imagebuilder
|
|
1372
1392
|
# }
|
1373
1393
|
#
|
1374
1394
|
# @!attribute [rw] name
|
1395
|
+
# The name of the filter. Filter names are case-sensitive.
|
1375
1396
|
# @return [String]
|
1376
1397
|
#
|
1377
1398
|
# @!attribute [rw] values
|
1399
|
+
# The filter values. Filter values are case-sensitive.
|
1378
1400
|
# @return [Array<String>]
|
1379
1401
|
#
|
1380
1402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Filter AWS API Documentation
|
@@ -1406,7 +1428,7 @@ module Aws::Imagebuilder
|
|
1406
1428
|
#
|
1407
1429
|
# @!attribute [rw] component_arn
|
1408
1430
|
# The Amazon Resource Name (ARN) of the component whose policy you
|
1409
|
-
#
|
1431
|
+
# want to retrieve.
|
1410
1432
|
# @return [String]
|
1411
1433
|
#
|
1412
1434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetComponentPolicyRequest AWS API Documentation
|
@@ -1440,8 +1462,8 @@ module Aws::Imagebuilder
|
|
1440
1462
|
# }
|
1441
1463
|
#
|
1442
1464
|
# @!attribute [rw] component_build_version_arn
|
1443
|
-
# The Amazon Resource Name (ARN) of the component that you
|
1444
|
-
# retrieve.
|
1465
|
+
# The Amazon Resource Name (ARN) of the component that you want to
|
1466
|
+
# retrieve. Regex requires "/\\d+$" suffix.
|
1445
1467
|
# @return [String]
|
1446
1468
|
#
|
1447
1469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetComponentRequest AWS API Documentation
|
@@ -1476,7 +1498,7 @@ module Aws::Imagebuilder
|
|
1476
1498
|
#
|
1477
1499
|
# @!attribute [rw] distribution_configuration_arn
|
1478
1500
|
# The Amazon Resource Name (ARN) of the distribution configuration
|
1479
|
-
# that you
|
1501
|
+
# that you want to retrieve.
|
1480
1502
|
# @return [String]
|
1481
1503
|
#
|
1482
1504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetDistributionConfigurationRequest AWS API Documentation
|
@@ -1510,7 +1532,7 @@ module Aws::Imagebuilder
|
|
1510
1532
|
# }
|
1511
1533
|
#
|
1512
1534
|
# @!attribute [rw] image_pipeline_arn
|
1513
|
-
# The Amazon Resource Name (ARN) of the image pipeline that you
|
1535
|
+
# The Amazon Resource Name (ARN) of the image pipeline that you want
|
1514
1536
|
# to retrieve.
|
1515
1537
|
# @return [String]
|
1516
1538
|
#
|
@@ -1545,7 +1567,7 @@ module Aws::Imagebuilder
|
|
1545
1567
|
# }
|
1546
1568
|
#
|
1547
1569
|
# @!attribute [rw] image_arn
|
1548
|
-
# The Amazon Resource Name (ARN) of the image whose policy you
|
1570
|
+
# The Amazon Resource Name (ARN) of the image whose policy you want to
|
1549
1571
|
# retrieve.
|
1550
1572
|
# @return [String]
|
1551
1573
|
#
|
@@ -1581,7 +1603,7 @@ module Aws::Imagebuilder
|
|
1581
1603
|
#
|
1582
1604
|
# @!attribute [rw] image_recipe_arn
|
1583
1605
|
# The Amazon Resource Name (ARN) of the image recipe whose policy you
|
1584
|
-
#
|
1606
|
+
# want to retrieve.
|
1585
1607
|
# @return [String]
|
1586
1608
|
#
|
1587
1609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageRecipePolicyRequest AWS API Documentation
|
@@ -1615,7 +1637,7 @@ module Aws::Imagebuilder
|
|
1615
1637
|
# }
|
1616
1638
|
#
|
1617
1639
|
# @!attribute [rw] image_recipe_arn
|
1618
|
-
# The Amazon Resource Name (ARN) of the image recipe that you
|
1640
|
+
# The Amazon Resource Name (ARN) of the image recipe that you want to
|
1619
1641
|
# retrieve.
|
1620
1642
|
# @return [String]
|
1621
1643
|
#
|
@@ -1650,7 +1672,7 @@ module Aws::Imagebuilder
|
|
1650
1672
|
# }
|
1651
1673
|
#
|
1652
1674
|
# @!attribute [rw] image_build_version_arn
|
1653
|
-
# The Amazon Resource Name (ARN) of the image that you
|
1675
|
+
# The Amazon Resource Name (ARN) of the image that you want to
|
1654
1676
|
# retrieve.
|
1655
1677
|
# @return [String]
|
1656
1678
|
#
|
@@ -1688,7 +1710,7 @@ module Aws::Imagebuilder
|
|
1688
1710
|
#
|
1689
1711
|
# @!attribute [rw] infrastructure_configuration_arn
|
1690
1712
|
# The Amazon Resource Name (ARN) of the infrastructure configuration
|
1691
|
-
# that you
|
1713
|
+
# that you want to retrieve.
|
1692
1714
|
# @return [String]
|
1693
1715
|
#
|
1694
1716
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetInfrastructureConfigurationRequest AWS API Documentation
|
@@ -1716,7 +1738,7 @@ module Aws::Imagebuilder
|
|
1716
1738
|
include Aws::Structure
|
1717
1739
|
end
|
1718
1740
|
|
1719
|
-
# You have specified
|
1741
|
+
# You have specified a client token for an operation using parameter
|
1720
1742
|
# values that differ from a previous request that used the same client
|
1721
1743
|
# token.
|
1722
1744
|
#
|
@@ -1833,7 +1855,7 @@ module Aws::Imagebuilder
|
|
1833
1855
|
# @return [String]
|
1834
1856
|
#
|
1835
1857
|
# @!attribute [rw] infrastructure_configuration_arn
|
1836
|
-
# The Amazon Resource Name (ARN) of the
|
1858
|
+
# The Amazon Resource Name (ARN) of the infrastructure configuration
|
1837
1859
|
# associated with this image pipeline.
|
1838
1860
|
# @return [String]
|
1839
1861
|
#
|
@@ -2002,7 +2024,7 @@ module Aws::Imagebuilder
|
|
2002
2024
|
include Aws::Structure
|
2003
2025
|
end
|
2004
2026
|
|
2005
|
-
# Image state shows the
|
2027
|
+
# Image state shows the image status and the reason for that status.
|
2006
2028
|
#
|
2007
2029
|
# @!attribute [rw] status
|
2008
2030
|
# The status of the image.
|
@@ -2088,7 +2110,7 @@ module Aws::Imagebuilder
|
|
2088
2110
|
# @return [Boolean]
|
2089
2111
|
#
|
2090
2112
|
# @!attribute [rw] timeout_minutes
|
2091
|
-
# The maximum time in minutes that tests are permitted to run
|
2113
|
+
# The maximum time in minutes that tests are permitted to run.
|
2092
2114
|
# @return [Integer]
|
2093
2115
|
#
|
2094
2116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageTestsConfiguration AWS API Documentation
|
@@ -2102,7 +2124,7 @@ module Aws::Imagebuilder
|
|
2102
2124
|
# An image semantic version.
|
2103
2125
|
#
|
2104
2126
|
# @!attribute [rw] arn
|
2105
|
-
# The Amazon Resource Name (ARN) of the image semantic
|
2127
|
+
# The Amazon Resource Name (ARN) of the image semantic version.
|
2106
2128
|
# @return [String]
|
2107
2129
|
#
|
2108
2130
|
# @!attribute [rw] name
|
@@ -2162,9 +2184,9 @@ module Aws::Imagebuilder
|
|
2162
2184
|
# @return [String]
|
2163
2185
|
#
|
2164
2186
|
# @!attribute [rw] semantic_version
|
2165
|
-
# The semantic version of the component. This version
|
2166
|
-
# semantic version syntax.
|
2167
|
-
# versioned like software 2.0.1 or date
|
2187
|
+
# The semantic version of the component. This version follows the
|
2188
|
+
# semantic version syntax. For example, major.minor.patch. This could
|
2189
|
+
# be versioned like software (2.0.1) or like a date (2019.12.01).
|
2168
2190
|
# @return [String]
|
2169
2191
|
#
|
2170
2192
|
# @!attribute [rw] description
|
@@ -2174,8 +2196,8 @@ module Aws::Imagebuilder
|
|
2174
2196
|
#
|
2175
2197
|
# @!attribute [rw] change_description
|
2176
2198
|
# The change description of the component. Describes what change has
|
2177
|
-
# been made in this version
|
2178
|
-
#
|
2199
|
+
# been made in this version, or what makes this version different from
|
2200
|
+
# other versions of this component.
|
2179
2201
|
# @return [String]
|
2180
2202
|
#
|
2181
2203
|
# @!attribute [rw] type
|
@@ -2184,7 +2206,7 @@ module Aws::Imagebuilder
|
|
2184
2206
|
# @return [String]
|
2185
2207
|
#
|
2186
2208
|
# @!attribute [rw] format
|
2187
|
-
# The format of the resource that you
|
2209
|
+
# The format of the resource that you want to import as a component.
|
2188
2210
|
# @return [String]
|
2189
2211
|
#
|
2190
2212
|
# @!attribute [rw] platform
|
@@ -2192,11 +2214,16 @@ module Aws::Imagebuilder
|
|
2192
2214
|
# @return [String]
|
2193
2215
|
#
|
2194
2216
|
# @!attribute [rw] data
|
2195
|
-
# The data of the component.
|
2217
|
+
# The data of the component. Used to specify the data inline. Either
|
2218
|
+
# `data` or `uri` can be used to specify the data within the
|
2219
|
+
# component.
|
2196
2220
|
# @return [String]
|
2197
2221
|
#
|
2198
2222
|
# @!attribute [rw] uri
|
2199
|
-
# The uri of the component.
|
2223
|
+
# The uri of the component. Must be an S3 URL and the requester must
|
2224
|
+
# have permission to access the S3 bucket. If you use S3, you can
|
2225
|
+
# specify component content up to your service quota. Either `data` or
|
2226
|
+
# `uri` can be used to specify the data within the component.
|
2200
2227
|
# @return [String]
|
2201
2228
|
#
|
2202
2229
|
# @!attribute [rw] kms_key_id
|
@@ -2256,48 +2283,48 @@ module Aws::Imagebuilder
|
|
2256
2283
|
# Details of the infrastructure configuration.
|
2257
2284
|
#
|
2258
2285
|
# @!attribute [rw] arn
|
2259
|
-
# The Amazon Resource Name (ARN) of the
|
2286
|
+
# The Amazon Resource Name (ARN) of the infrastructure configuration.
|
2260
2287
|
# @return [String]
|
2261
2288
|
#
|
2262
2289
|
# @!attribute [rw] name
|
2263
|
-
# The name of the
|
2290
|
+
# The name of the infrastructure configuration.
|
2264
2291
|
# @return [String]
|
2265
2292
|
#
|
2266
2293
|
# @!attribute [rw] description
|
2267
|
-
# The description of the
|
2294
|
+
# The description of the infrastructure configuration.
|
2268
2295
|
# @return [String]
|
2269
2296
|
#
|
2270
2297
|
# @!attribute [rw] instance_types
|
2271
|
-
# The instance types of the
|
2298
|
+
# The instance types of the infrastructure configuration.
|
2272
2299
|
# @return [Array<String>]
|
2273
2300
|
#
|
2274
2301
|
# @!attribute [rw] instance_profile_name
|
2275
|
-
# The instance profile of the
|
2302
|
+
# The instance profile of the infrastructure configuration.
|
2276
2303
|
# @return [String]
|
2277
2304
|
#
|
2278
2305
|
# @!attribute [rw] security_group_ids
|
2279
|
-
# The security group IDs of the
|
2306
|
+
# The security group IDs of the infrastructure configuration.
|
2280
2307
|
# @return [Array<String>]
|
2281
2308
|
#
|
2282
2309
|
# @!attribute [rw] subnet_id
|
2283
|
-
# The subnet ID of the
|
2310
|
+
# The subnet ID of the infrastructure configuration.
|
2284
2311
|
# @return [String]
|
2285
2312
|
#
|
2286
2313
|
# @!attribute [rw] logging
|
2287
|
-
# The logging configuration of the
|
2314
|
+
# The logging configuration of the infrastructure configuration.
|
2288
2315
|
# @return [Types::Logging]
|
2289
2316
|
#
|
2290
2317
|
# @!attribute [rw] key_pair
|
2291
|
-
# The EC2 key pair of the
|
2318
|
+
# The EC2 key pair of the infrastructure configuration.
|
2292
2319
|
# @return [String]
|
2293
2320
|
#
|
2294
2321
|
# @!attribute [rw] terminate_instance_on_failure
|
2295
2322
|
# The terminate instance on failure configuration of the
|
2296
|
-
#
|
2323
|
+
# infrastructure configuration.
|
2297
2324
|
# @return [Boolean]
|
2298
2325
|
#
|
2299
2326
|
# @!attribute [rw] sns_topic_arn
|
2300
|
-
# The SNS
|
2327
|
+
# The SNS topic Amazon Resource Name (ARN) of the infrastructure
|
2301
2328
|
# configuration.
|
2302
2329
|
# @return [String]
|
2303
2330
|
#
|
@@ -2310,7 +2337,7 @@ module Aws::Imagebuilder
|
|
2310
2337
|
# @return [String]
|
2311
2338
|
#
|
2312
2339
|
# @!attribute [rw] tags
|
2313
|
-
# The tags of the
|
2340
|
+
# The tags of the infrastructure configuration.
|
2314
2341
|
# @return [Hash<String,String>]
|
2315
2342
|
#
|
2316
2343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InfrastructureConfiguration AWS API Documentation
|
@@ -2389,7 +2416,7 @@ module Aws::Imagebuilder
|
|
2389
2416
|
# volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
|
2390
2417
|
# },
|
2391
2418
|
# virtual_name: "NonEmptyString",
|
2392
|
-
# no_device: "
|
2419
|
+
# no_device: "EmptyString",
|
2393
2420
|
# }
|
2394
2421
|
#
|
2395
2422
|
# @!attribute [rw] device_name
|
@@ -2397,7 +2424,7 @@ module Aws::Imagebuilder
|
|
2397
2424
|
# @return [String]
|
2398
2425
|
#
|
2399
2426
|
# @!attribute [rw] ebs
|
2400
|
-
# Use to manage EBS
|
2427
|
+
# Use to manage Amazon EBS-specific configuration for this mapping.
|
2401
2428
|
# @return [Types::EbsInstanceBlockDeviceSpecification]
|
2402
2429
|
#
|
2403
2430
|
# @!attribute [rw] virtual_name
|
@@ -2494,6 +2521,15 @@ module Aws::Imagebuilder
|
|
2494
2521
|
include Aws::Structure
|
2495
2522
|
end
|
2496
2523
|
|
2524
|
+
# Describes the configuration for a launch permission. The launch
|
2525
|
+
# permission modification request is sent to the [EC2
|
2526
|
+
# ModifyImageAttribute][1] API on behalf of the user for each Region
|
2527
|
+
# they have selected to distribute the AMI.
|
2528
|
+
#
|
2529
|
+
#
|
2530
|
+
#
|
2531
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyImageAttribute.html
|
2532
|
+
#
|
2497
2533
|
# @note When making an API call, you may pass LaunchPermissionConfiguration
|
2498
2534
|
# data as a hash:
|
2499
2535
|
#
|
@@ -2503,9 +2539,11 @@ module Aws::Imagebuilder
|
|
2503
2539
|
# }
|
2504
2540
|
#
|
2505
2541
|
# @!attribute [rw] user_ids
|
2542
|
+
# The AWS account ID.
|
2506
2543
|
# @return [Array<String>]
|
2507
2544
|
#
|
2508
2545
|
# @!attribute [rw] user_groups
|
2546
|
+
# The name of the group.
|
2509
2547
|
# @return [Array<String>]
|
2510
2548
|
#
|
2511
2549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/LaunchPermissionConfiguration AWS API Documentation
|
@@ -2526,7 +2564,8 @@ module Aws::Imagebuilder
|
|
2526
2564
|
# }
|
2527
2565
|
#
|
2528
2566
|
# @!attribute [rw] component_version_arn
|
2529
|
-
# The component version
|
2567
|
+
# The component version Amazon Resource Name (ARN) whose versions you
|
2568
|
+
# want to list.
|
2530
2569
|
# @return [String]
|
2531
2570
|
#
|
2532
2571
|
# @!attribute [rw] max_results
|
@@ -2556,10 +2595,10 @@ module Aws::Imagebuilder
|
|
2556
2595
|
# @return [Array<Types::ComponentSummary>]
|
2557
2596
|
#
|
2558
2597
|
# @!attribute [rw] next_token
|
2559
|
-
# The next token used for paginated responses. When this is not empty
|
2560
|
-
#
|
2561
|
-
#
|
2562
|
-
# additional
|
2598
|
+
# The next token used for paginated responses. When this is not empty,
|
2599
|
+
# there are additional elements that the service has not included in
|
2600
|
+
# this request. Use this token with the next request to retrieve
|
2601
|
+
# additional objects.
|
2563
2602
|
# @return [String]
|
2564
2603
|
#
|
2565
2604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListComponentBuildVersionsResponse AWS API Documentation
|
@@ -2587,14 +2626,15 @@ module Aws::Imagebuilder
|
|
2587
2626
|
# }
|
2588
2627
|
#
|
2589
2628
|
# @!attribute [rw] owner
|
2590
|
-
# The owner defines
|
2591
|
-
# request will only show components owned by your account. You
|
2592
|
-
# this field to specify if you
|
2593
|
-
# yourself, Amazon, or those components that have been shared
|
2594
|
-
# by other customers.
|
2629
|
+
# The owner defines which components you want to list. By default,
|
2630
|
+
# this request will only show components owned by your account. You
|
2631
|
+
# can use this field to specify if you want to view components owned
|
2632
|
+
# by yourself, by Amazon, or those components that have been shared
|
2633
|
+
# with you by other customers.
|
2595
2634
|
# @return [String]
|
2596
2635
|
#
|
2597
2636
|
# @!attribute [rw] filters
|
2637
|
+
# The filters.
|
2598
2638
|
# @return [Array<Types::Filter>]
|
2599
2639
|
#
|
2600
2640
|
# @!attribute [rw] max_results
|
@@ -2625,10 +2665,10 @@ module Aws::Imagebuilder
|
|
2625
2665
|
# @return [Array<Types::ComponentVersion>]
|
2626
2666
|
#
|
2627
2667
|
# @!attribute [rw] next_token
|
2628
|
-
# The next token used for paginated responses. When this is not empty
|
2629
|
-
#
|
2630
|
-
#
|
2631
|
-
# additional
|
2668
|
+
# The next token used for paginated responses. When this is not empty,
|
2669
|
+
# there are additional elements that the service has not included in
|
2670
|
+
# this request. Use this token with the next request to retrieve
|
2671
|
+
# additional objects.
|
2632
2672
|
# @return [String]
|
2633
2673
|
#
|
2634
2674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListComponentsResponse AWS API Documentation
|
@@ -2655,6 +2695,7 @@ module Aws::Imagebuilder
|
|
2655
2695
|
# }
|
2656
2696
|
#
|
2657
2697
|
# @!attribute [rw] filters
|
2698
|
+
# The filters.
|
2658
2699
|
# @return [Array<Types::Filter>]
|
2659
2700
|
#
|
2660
2701
|
# @!attribute [rw] max_results
|
@@ -2684,10 +2725,10 @@ module Aws::Imagebuilder
|
|
2684
2725
|
# @return [Array<Types::DistributionConfigurationSummary>]
|
2685
2726
|
#
|
2686
2727
|
# @!attribute [rw] next_token
|
2687
|
-
# The next token used for paginated responses. When this is not empty
|
2688
|
-
#
|
2689
|
-
#
|
2690
|
-
# additional
|
2728
|
+
# The next token used for paginated responses. When this is not empty,
|
2729
|
+
# there are additional elements that the service has not included in
|
2730
|
+
# this request. Use this token with the next request to retrieve
|
2731
|
+
# additional objects.
|
2691
2732
|
# @return [String]
|
2692
2733
|
#
|
2693
2734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListDistributionConfigurationsResponse AWS API Documentation
|
@@ -2716,10 +2757,11 @@ module Aws::Imagebuilder
|
|
2716
2757
|
#
|
2717
2758
|
# @!attribute [rw] image_version_arn
|
2718
2759
|
# The Amazon Resource Name (ARN) of the image whose build versions you
|
2719
|
-
#
|
2760
|
+
# want to retrieve.
|
2720
2761
|
# @return [String]
|
2721
2762
|
#
|
2722
2763
|
# @!attribute [rw] filters
|
2764
|
+
# The filters.
|
2723
2765
|
# @return [Array<Types::Filter>]
|
2724
2766
|
#
|
2725
2767
|
# @!attribute [rw] max_results
|
@@ -2750,10 +2792,10 @@ module Aws::Imagebuilder
|
|
2750
2792
|
# @return [Array<Types::ImageSummary>]
|
2751
2793
|
#
|
2752
2794
|
# @!attribute [rw] next_token
|
2753
|
-
# The next token used for paginated responses. When this is not empty
|
2754
|
-
#
|
2755
|
-
#
|
2756
|
-
# additional
|
2795
|
+
# The next token used for paginated responses. When this is not empty,
|
2796
|
+
# there are additional elements that the service has not included in
|
2797
|
+
# this request. Use this token with the next request to retrieve
|
2798
|
+
# additional objects.
|
2757
2799
|
# @return [String]
|
2758
2800
|
#
|
2759
2801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImageBuildVersionsResponse AWS API Documentation
|
@@ -2769,7 +2811,7 @@ module Aws::Imagebuilder
|
|
2769
2811
|
# data as a hash:
|
2770
2812
|
#
|
2771
2813
|
# {
|
2772
|
-
# image_pipeline_arn: "ImagePipelineArn",
|
2814
|
+
# image_pipeline_arn: "ImagePipelineArn", # required
|
2773
2815
|
# filters: [
|
2774
2816
|
# {
|
2775
2817
|
# name: "FilterName",
|
@@ -2782,10 +2824,11 @@ module Aws::Imagebuilder
|
|
2782
2824
|
#
|
2783
2825
|
# @!attribute [rw] image_pipeline_arn
|
2784
2826
|
# The Amazon Resource Name (ARN) of the image pipeline whose images
|
2785
|
-
# you
|
2827
|
+
# you want to view.
|
2786
2828
|
# @return [String]
|
2787
2829
|
#
|
2788
2830
|
# @!attribute [rw] filters
|
2831
|
+
# The filters.
|
2789
2832
|
# @return [Array<Types::Filter>]
|
2790
2833
|
#
|
2791
2834
|
# @!attribute [rw] max_results
|
@@ -2816,10 +2859,10 @@ module Aws::Imagebuilder
|
|
2816
2859
|
# @return [Array<Types::ImageSummary>]
|
2817
2860
|
#
|
2818
2861
|
# @!attribute [rw] next_token
|
2819
|
-
# The next token used for paginated responses. When this is not empty
|
2820
|
-
#
|
2821
|
-
#
|
2822
|
-
# additional
|
2862
|
+
# The next token used for paginated responses. When this is not empty,
|
2863
|
+
# there are additional elements that the service has not included in
|
2864
|
+
# this request. Use this token with the next request to retrieve
|
2865
|
+
# additional objects.
|
2823
2866
|
# @return [String]
|
2824
2867
|
#
|
2825
2868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePipelineImagesResponse AWS API Documentation
|
@@ -2846,6 +2889,7 @@ module Aws::Imagebuilder
|
|
2846
2889
|
# }
|
2847
2890
|
#
|
2848
2891
|
# @!attribute [rw] filters
|
2892
|
+
# The filters.
|
2849
2893
|
# @return [Array<Types::Filter>]
|
2850
2894
|
#
|
2851
2895
|
# @!attribute [rw] max_results
|
@@ -2875,10 +2919,10 @@ module Aws::Imagebuilder
|
|
2875
2919
|
# @return [Array<Types::ImagePipeline>]
|
2876
2920
|
#
|
2877
2921
|
# @!attribute [rw] next_token
|
2878
|
-
# The next token used for paginated responses. When this is not empty
|
2879
|
-
#
|
2880
|
-
#
|
2881
|
-
# additional
|
2922
|
+
# The next token used for paginated responses. When this is not empty,
|
2923
|
+
# there are additional elements that the service has not included in
|
2924
|
+
# this request. Use this token with the next request to retrieve
|
2925
|
+
# additional objects.
|
2882
2926
|
# @return [String]
|
2883
2927
|
#
|
2884
2928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePipelinesResponse AWS API Documentation
|
@@ -2906,14 +2950,15 @@ module Aws::Imagebuilder
|
|
2906
2950
|
# }
|
2907
2951
|
#
|
2908
2952
|
# @!attribute [rw] owner
|
2909
|
-
# The owner defines
|
2953
|
+
# The owner defines which image recipes you want to list. By default,
|
2910
2954
|
# this request will only show image recipes owned by your account. You
|
2911
|
-
#
|
2912
|
-
# owned by yourself, Amazon, or those image recipes that have been
|
2955
|
+
# can use this field to specify if you want to view image recipes
|
2956
|
+
# owned by yourself, by Amazon, or those image recipes that have been
|
2913
2957
|
# shared with you by other customers.
|
2914
2958
|
# @return [String]
|
2915
2959
|
#
|
2916
2960
|
# @!attribute [rw] filters
|
2961
|
+
# The filters.
|
2917
2962
|
# @return [Array<Types::Filter>]
|
2918
2963
|
#
|
2919
2964
|
# @!attribute [rw] max_results
|
@@ -2944,10 +2989,10 @@ module Aws::Imagebuilder
|
|
2944
2989
|
# @return [Array<Types::ImageRecipeSummary>]
|
2945
2990
|
#
|
2946
2991
|
# @!attribute [rw] next_token
|
2947
|
-
# The next token used for paginated responses. When this is not empty
|
2948
|
-
#
|
2949
|
-
#
|
2950
|
-
# additional
|
2992
|
+
# The next token used for paginated responses. When this is not empty,
|
2993
|
+
# there are additional elements that the service has not included in
|
2994
|
+
# this request. Use this token with the next request to retrieve
|
2995
|
+
# additional objects.
|
2951
2996
|
# @return [String]
|
2952
2997
|
#
|
2953
2998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImageRecipesResponse AWS API Documentation
|
@@ -2975,14 +3020,15 @@ module Aws::Imagebuilder
|
|
2975
3020
|
# }
|
2976
3021
|
#
|
2977
3022
|
# @!attribute [rw] owner
|
2978
|
-
# The owner defines
|
2979
|
-
# request will only show images owned by your account. You
|
2980
|
-
# this field to specify if you
|
2981
|
-
# Amazon, or those images that have been shared with you by other
|
3023
|
+
# The owner defines which images you want to list. By default, this
|
3024
|
+
# request will only show images owned by your account. You can use
|
3025
|
+
# this field to specify if you want to view images owned by yourself,
|
3026
|
+
# by Amazon, or those images that have been shared with you by other
|
2982
3027
|
# customers.
|
2983
3028
|
# @return [String]
|
2984
3029
|
#
|
2985
3030
|
# @!attribute [rw] filters
|
3031
|
+
# The filters.
|
2986
3032
|
# @return [Array<Types::Filter>]
|
2987
3033
|
#
|
2988
3034
|
# @!attribute [rw] max_results
|
@@ -3013,10 +3059,10 @@ module Aws::Imagebuilder
|
|
3013
3059
|
# @return [Array<Types::ImageVersion>]
|
3014
3060
|
#
|
3015
3061
|
# @!attribute [rw] next_token
|
3016
|
-
# The next token used for paginated responses. When this is not empty
|
3017
|
-
#
|
3018
|
-
#
|
3019
|
-
# additional
|
3062
|
+
# The next token used for paginated responses. When this is not empty,
|
3063
|
+
# there are additional elements that the service has not included in
|
3064
|
+
# this request. Use this token with the next request to retrieve
|
3065
|
+
# additional objects.
|
3020
3066
|
# @return [String]
|
3021
3067
|
#
|
3022
3068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagesResponse AWS API Documentation
|
@@ -3043,6 +3089,7 @@ module Aws::Imagebuilder
|
|
3043
3089
|
# }
|
3044
3090
|
#
|
3045
3091
|
# @!attribute [rw] filters
|
3092
|
+
# The filters.
|
3046
3093
|
# @return [Array<Types::Filter>]
|
3047
3094
|
#
|
3048
3095
|
# @!attribute [rw] max_results
|
@@ -3072,10 +3119,10 @@ module Aws::Imagebuilder
|
|
3072
3119
|
# @return [Array<Types::InfrastructureConfigurationSummary>]
|
3073
3120
|
#
|
3074
3121
|
# @!attribute [rw] next_token
|
3075
|
-
# The next token used for paginated responses. When this is not empty
|
3076
|
-
#
|
3077
|
-
#
|
3078
|
-
# additional
|
3122
|
+
# The next token used for paginated responses. When this is not empty,
|
3123
|
+
# there are additional elements that the service has not included in
|
3124
|
+
# this request. Use this token with the next request to retrieve
|
3125
|
+
# additional objects.
|
3079
3126
|
# @return [String]
|
3080
3127
|
#
|
3081
3128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListInfrastructureConfigurationsResponse AWS API Documentation
|
@@ -3095,7 +3142,7 @@ module Aws::Imagebuilder
|
|
3095
3142
|
# }
|
3096
3143
|
#
|
3097
3144
|
# @!attribute [rw] resource_arn
|
3098
|
-
# The Amazon Resource Name (ARN) of the resource whose tags you
|
3145
|
+
# The Amazon Resource Name (ARN) of the resource whose tags you want
|
3099
3146
|
# to retrieve.
|
3100
3147
|
# @return [String]
|
3101
3148
|
#
|
@@ -3117,8 +3164,7 @@ module Aws::Imagebuilder
|
|
3117
3164
|
include Aws::Structure
|
3118
3165
|
end
|
3119
3166
|
|
3120
|
-
# Logging configuration defines where Image Builder uploads your logs
|
3121
|
-
# to.
|
3167
|
+
# Logging configuration defines where Image Builder uploads your logs.
|
3122
3168
|
#
|
3123
3169
|
# @note When making an API call, you may pass Logging
|
3124
3170
|
# data as a hash:
|
@@ -3131,7 +3177,7 @@ module Aws::Imagebuilder
|
|
3131
3177
|
# }
|
3132
3178
|
#
|
3133
3179
|
# @!attribute [rw] s3_logs
|
3134
|
-
# The S3 logging configuration.
|
3180
|
+
# The Amazon S3 logging configuration.
|
3135
3181
|
# @return [Types::S3Logs]
|
3136
3182
|
#
|
3137
3183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Logging AWS API Documentation
|
@@ -3293,8 +3339,7 @@ module Aws::Imagebuilder
|
|
3293
3339
|
end
|
3294
3340
|
|
3295
3341
|
# You have attempted to mutate or delete a resource with a dependency
|
3296
|
-
# that
|
3297
|
-
# details.
|
3342
|
+
# that prohibits this action. See the error message for more details.
|
3298
3343
|
#
|
3299
3344
|
# @!attribute [rw] message
|
3300
3345
|
# @return [String]
|
@@ -3307,7 +3352,7 @@ module Aws::Imagebuilder
|
|
3307
3352
|
end
|
3308
3353
|
|
3309
3354
|
# The resource that you are trying to operate on is currently in use.
|
3310
|
-
# Review the message details
|
3355
|
+
# Review the message details and retry later.
|
3311
3356
|
#
|
3312
3357
|
# @!attribute [rw] message
|
3313
3358
|
# @return [String]
|
@@ -3332,7 +3377,7 @@ module Aws::Imagebuilder
|
|
3332
3377
|
include Aws::Structure
|
3333
3378
|
end
|
3334
3379
|
|
3335
|
-
# S3
|
3380
|
+
# Amazon S3 logging configuration.
|
3336
3381
|
#
|
3337
3382
|
# @note When making an API call, you may pass S3Logs
|
3338
3383
|
# data as a hash:
|
@@ -3343,11 +3388,11 @@ module Aws::Imagebuilder
|
|
3343
3388
|
# }
|
3344
3389
|
#
|
3345
3390
|
# @!attribute [rw] s3_bucket_name
|
3346
|
-
# The S3 bucket in which to store the logs.
|
3391
|
+
# The Amazon S3 bucket in which to store the logs.
|
3347
3392
|
# @return [String]
|
3348
3393
|
#
|
3349
3394
|
# @!attribute [rw] s3_key_prefix
|
3350
|
-
# The S3 path in which to store the logs.
|
3395
|
+
# The Amazon S3 path in which to store the logs.
|
3351
3396
|
# @return [String]
|
3352
3397
|
#
|
3353
3398
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/S3Logs AWS API Documentation
|
@@ -3370,13 +3415,17 @@ module Aws::Imagebuilder
|
|
3370
3415
|
# }
|
3371
3416
|
#
|
3372
3417
|
# @!attribute [rw] schedule_expression
|
3373
|
-
# The expression determines how often
|
3374
|
-
#
|
3418
|
+
# The expression determines how often EC2 Image Builder evaluates your
|
3419
|
+
# `pipelineExecutionStartCondition`.
|
3375
3420
|
# @return [String]
|
3376
3421
|
#
|
3377
3422
|
# @!attribute [rw] pipeline_execution_start_condition
|
3378
3423
|
# The condition configures when the pipeline should trigger a new
|
3379
|
-
# image build.
|
3424
|
+
# image build. When the `pipelineExecutionStartCondition` is set to
|
3425
|
+
# `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`, EC2 Image
|
3426
|
+
# Builder will build a new image only when there are known changes
|
3427
|
+
# pending. When it is set to `EXPRESSION_MATCH_ONLY`, it will build a
|
3428
|
+
# new image every time the CRON expression matches the current time.
|
3380
3429
|
# @return [String]
|
3381
3430
|
#
|
3382
3431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Schedule AWS API Documentation
|
@@ -3421,7 +3470,7 @@ module Aws::Imagebuilder
|
|
3421
3470
|
# }
|
3422
3471
|
#
|
3423
3472
|
# @!attribute [rw] image_pipeline_arn
|
3424
|
-
# The Amazon Resource Name (ARN) of the image pipeline that you
|
3473
|
+
# The Amazon Resource Name (ARN) of the image pipeline that you want
|
3425
3474
|
# to manually invoke.
|
3426
3475
|
# @return [String]
|
3427
3476
|
#
|
@@ -3473,7 +3522,7 @@ module Aws::Imagebuilder
|
|
3473
3522
|
# }
|
3474
3523
|
#
|
3475
3524
|
# @!attribute [rw] resource_arn
|
3476
|
-
# The Amazon Resource Name (ARN) of the resource that you
|
3525
|
+
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
3477
3526
|
# @return [String]
|
3478
3527
|
#
|
3479
3528
|
# @!attribute [rw] tags
|
@@ -3501,7 +3550,7 @@ module Aws::Imagebuilder
|
|
3501
3550
|
# }
|
3502
3551
|
#
|
3503
3552
|
# @!attribute [rw] resource_arn
|
3504
|
-
# The Amazon Resource Name (ARN) of the resource that you
|
3553
|
+
# The Amazon Resource Name (ARN) of the resource that you want to
|
3505
3554
|
# untag.
|
3506
3555
|
# @return [String]
|
3507
3556
|
#
|
@@ -3527,11 +3576,11 @@ module Aws::Imagebuilder
|
|
3527
3576
|
# {
|
3528
3577
|
# distribution_configuration_arn: "DistributionConfigurationArn", # required
|
3529
3578
|
# description: "NonEmptyString",
|
3530
|
-
# distributions: [
|
3579
|
+
# distributions: [ # required
|
3531
3580
|
# {
|
3532
3581
|
# region: "NonEmptyString", # required
|
3533
3582
|
# ami_distribution_configuration: {
|
3534
|
-
# name: "
|
3583
|
+
# name: "AmiNameString",
|
3535
3584
|
# description: "NonEmptyString",
|
3536
3585
|
# ami_tags: {
|
3537
3586
|
# "TagKey" => "TagValue",
|
@@ -3549,7 +3598,7 @@ module Aws::Imagebuilder
|
|
3549
3598
|
#
|
3550
3599
|
# @!attribute [rw] distribution_configuration_arn
|
3551
3600
|
# The Amazon Resource Name (ARN) of the distribution configuration
|
3552
|
-
# that you
|
3601
|
+
# that you want to update.
|
3553
3602
|
# @return [String]
|
3554
3603
|
#
|
3555
3604
|
# @!attribute [rw] description
|
@@ -3605,8 +3654,8 @@ module Aws::Imagebuilder
|
|
3605
3654
|
# {
|
3606
3655
|
# image_pipeline_arn: "ImagePipelineArn", # required
|
3607
3656
|
# description: "NonEmptyString",
|
3608
|
-
# image_recipe_arn: "ImageRecipeArn",
|
3609
|
-
# infrastructure_configuration_arn: "InfrastructureConfigurationArn",
|
3657
|
+
# image_recipe_arn: "ImageRecipeArn", # required
|
3658
|
+
# infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
|
3610
3659
|
# distribution_configuration_arn: "DistributionConfigurationArn",
|
3611
3660
|
# image_tests_configuration: {
|
3612
3661
|
# image_tests_enabled: false,
|
@@ -3621,7 +3670,7 @@ module Aws::Imagebuilder
|
|
3621
3670
|
# }
|
3622
3671
|
#
|
3623
3672
|
# @!attribute [rw] image_pipeline_arn
|
3624
|
-
# The Amazon Resource Name (ARN) of the image pipeline that you
|
3673
|
+
# The Amazon Resource Name (ARN) of the image pipeline that you want
|
3625
3674
|
# to update.
|
3626
3675
|
# @return [String]
|
3627
3676
|
#
|
@@ -3708,7 +3757,7 @@ module Aws::Imagebuilder
|
|
3708
3757
|
# infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
|
3709
3758
|
# description: "NonEmptyString",
|
3710
3759
|
# instance_types: ["InstanceType"],
|
3711
|
-
# instance_profile_name: "NonEmptyString",
|
3760
|
+
# instance_profile_name: "NonEmptyString", # required
|
3712
3761
|
# security_group_ids: ["NonEmptyString"],
|
3713
3762
|
# subnet_id: "NonEmptyString",
|
3714
3763
|
# logging: {
|
@@ -3719,13 +3768,13 @@ module Aws::Imagebuilder
|
|
3719
3768
|
# },
|
3720
3769
|
# key_pair: "NonEmptyString",
|
3721
3770
|
# terminate_instance_on_failure: false,
|
3722
|
-
# sns_topic_arn: "
|
3771
|
+
# sns_topic_arn: "SnsTopicArn",
|
3723
3772
|
# client_token: "ClientToken", # required
|
3724
3773
|
# }
|
3725
3774
|
#
|
3726
3775
|
# @!attribute [rw] infrastructure_configuration_arn
|
3727
3776
|
# The Amazon Resource Name (ARN) of the infrastructure configuration
|
3728
|
-
# that you
|
3777
|
+
# that you want to update.
|
3729
3778
|
# @return [String]
|
3730
3779
|
#
|
3731
3780
|
# @!attribute [rw] description
|
@@ -3733,8 +3782,8 @@ module Aws::Imagebuilder
|
|
3733
3782
|
# @return [String]
|
3734
3783
|
#
|
3735
3784
|
# @!attribute [rw] instance_types
|
3736
|
-
# The instance types of the infrastructure configuration. You
|
3737
|
-
# specify one or more instance types to use for this build
|
3785
|
+
# The instance types of the infrastructure configuration. You can
|
3786
|
+
# specify one or more instance types to use for this build. The
|
3738
3787
|
# service will pick one of these instance types based on availability.
|
3739
3788
|
# @return [Array<String>]
|
3740
3789
|
#
|
@@ -3759,14 +3808,14 @@ module Aws::Imagebuilder
|
|
3759
3808
|
#
|
3760
3809
|
# @!attribute [rw] key_pair
|
3761
3810
|
# The key pair of the infrastructure configuration. This can be used
|
3762
|
-
# to log
|
3811
|
+
# to log on to and debug the instance used to create your image.
|
3763
3812
|
# @return [String]
|
3764
3813
|
#
|
3765
3814
|
# @!attribute [rw] terminate_instance_on_failure
|
3766
3815
|
# The terminate instance on failure setting of the infrastructure
|
3767
|
-
# configuration. Set to false if you
|
3768
|
-
#
|
3769
|
-
#
|
3816
|
+
# configuration. Set to false if you want Image Builder to retain the
|
3817
|
+
# instance used to configure your AMI if the build or test phase of
|
3818
|
+
# your workflow fails.
|
3770
3819
|
# @return [Boolean]
|
3771
3820
|
#
|
3772
3821
|
# @!attribute [rw] sns_topic_arn
|