aws-sdk-imagebuilder 1.41.0 → 1.42.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.
@@ -10,22 +10,18 @@
10
10
  module Aws::Imagebuilder
11
11
  module Types
12
12
 
13
- # In addition to your infrastruction configuration, these settings
14
- # provide an extra layer of control over your build instances. For
15
- # instances where Image Builder installs the Systems Manager agent, you
16
- # can choose whether to keep it for the AMI that you create. You can
13
+ # In addition to your infrastructure configuration, these settings
14
+ # provide an extra layer of control over your build instances. You can
17
15
  # also specify commands to run on launch for all of your build
18
16
  # instances.
19
17
  #
20
- # @note When making an API call, you may pass AdditionalInstanceConfiguration
21
- # data as a hash:
22
- #
23
- # {
24
- # systems_manager_agent: {
25
- # uninstall_after_build: false,
26
- # },
27
- # user_data_override: "UserDataOverride",
28
- # }
18
+ # Image Builder does not automatically install the Systems Manager agent
19
+ # on Windows instances. If your base image includes the Systems Manager
20
+ # agent, then the AMI that you create will also include the agent. For
21
+ # Linux instances, if the base image does not already include the
22
+ # Systems Manager agent, Image Builder installs it. For Linux instances
23
+ # where Image Builder installs the Systems Manager agent, you can choose
24
+ # whether to keep it for the AMI that you create.
29
25
  #
30
26
  # @!attribute [rw] systems_manager_agent
31
27
  # Contains settings for the Systems Manager agent on your build
@@ -106,25 +102,6 @@ module Aws::Imagebuilder
106
102
 
107
103
  # Define and configure the output AMIs of the pipeline.
108
104
  #
109
- # @note When making an API call, you may pass AmiDistributionConfiguration
110
- # data as a hash:
111
- #
112
- # {
113
- # name: "AmiNameString",
114
- # description: "NonEmptyString",
115
- # target_account_ids: ["AccountId"],
116
- # ami_tags: {
117
- # "TagKey" => "TagValue",
118
- # },
119
- # kms_key_id: "NonEmptyString",
120
- # launch_permission: {
121
- # user_ids: ["AccountId"],
122
- # user_groups: ["NonEmptyString"],
123
- # organization_arns: ["OrganizationArn"],
124
- # organizational_unit_arns: ["OrganizationalUnitArn"],
125
- # },
126
- # }
127
- #
128
105
  # @!attribute [rw] name
129
106
  # The name of the output AMI.
130
107
  # @return [String]
@@ -178,14 +155,6 @@ module Aws::Imagebuilder
178
155
  include Aws::Structure
179
156
  end
180
157
 
181
- # @note When making an API call, you may pass CancelImageCreationRequest
182
- # data as a hash:
183
- #
184
- # {
185
- # image_build_version_arn: "ImageBuildVersionArn", # required
186
- # client_token: "ClientToken", # required
187
- # }
188
- #
189
158
  # @!attribute [rw] image_build_version_arn
190
159
  # The Amazon Resource Name (ARN) of the image whose creation you want
191
160
  # to cancel.
@@ -275,18 +244,18 @@ module Aws::Imagebuilder
275
244
  # @return [String]
276
245
  #
277
246
  # @!attribute [rw] type
278
- # The type of the component denotes whether the component is used to
279
- # build the image or only to test it.
247
+ # The component type specifies whether Image Builder uses the
248
+ # component to build the image or only to test it.
280
249
  # @return [String]
281
250
  #
282
251
  # @!attribute [rw] platform
283
- # The platform of the component.
252
+ # The operating system platform of the component.
284
253
  # @return [String]
285
254
  #
286
255
  # @!attribute [rw] supported_os_versions
287
256
  # The operating system (OS) version supported by the component. If the
288
- # OS information is available, a prefix match is performed against the
289
- # base image OS version during image recipe creation.
257
+ # OS information is available, Image Builder performs a prefix match
258
+ # against the base image OS version during image recipe creation.
290
259
  # @return [Array<String>]
291
260
  #
292
261
  # @!attribute [rw] state
@@ -295,8 +264,8 @@ module Aws::Imagebuilder
295
264
  # @return [Types::ComponentState]
296
265
  #
297
266
  # @!attribute [rw] parameters
298
- # Contains parameter details for each of the parameters that are
299
- # defined for the component.
267
+ # Contains parameter details for each of the parameters that the
268
+ # component document defined for the component.
300
269
  # @return [Array<Types::ComponentParameterDetail>]
301
270
  #
302
271
  # @!attribute [rw] owner
@@ -316,13 +285,24 @@ module Aws::Imagebuilder
316
285
  # @return [Boolean]
317
286
  #
318
287
  # @!attribute [rw] date_created
319
- # The date that the component was created.
288
+ # The date that Image Builder created the component.
320
289
  # @return [String]
321
290
  #
322
291
  # @!attribute [rw] tags
323
- # The tags associated with the component.
292
+ # The tags that apply to the component.
324
293
  # @return [Hash<String,String>]
325
294
  #
295
+ # @!attribute [rw] publisher
296
+ # Contains the name of the publisher if this is a third-party
297
+ # component. Otherwise, this property is empty.
298
+ # @return [String]
299
+ #
300
+ # @!attribute [rw] obfuscate
301
+ # Indicates whether component source is hidden from view in the
302
+ # console, and from component detail results for API, CLI, or SDK
303
+ # operations.
304
+ # @return [Boolean]
305
+ #
326
306
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Component AWS API Documentation
327
307
  #
328
308
  class Component < Struct.new(
@@ -341,33 +321,22 @@ module Aws::Imagebuilder
341
321
  :kms_key_id,
342
322
  :encrypted,
343
323
  :date_created,
344
- :tags)
324
+ :tags,
325
+ :publisher,
326
+ :obfuscate)
345
327
  SENSITIVE = []
346
328
  include Aws::Structure
347
329
  end
348
330
 
349
331
  # Configuration details of the component.
350
332
  #
351
- # @note When making an API call, you may pass ComponentConfiguration
352
- # data as a hash:
353
- #
354
- # {
355
- # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
356
- # parameters: [
357
- # {
358
- # name: "ComponentParameterName", # required
359
- # value: ["ComponentParameterValue"], # required
360
- # },
361
- # ],
362
- # }
363
- #
364
333
  # @!attribute [rw] component_arn
365
334
  # The Amazon Resource Name (ARN) of the component.
366
335
  # @return [String]
367
336
  #
368
337
  # @!attribute [rw] parameters
369
- # A group of parameter settings that are used to configure the
370
- # component for a specific recipe.
338
+ # A group of parameter settings that Image Builder uses to configure
339
+ # the component for a specific recipe.
371
340
  # @return [Array<Types::ComponentParameter>]
372
341
  #
373
342
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ComponentConfiguration AWS API Documentation
@@ -381,14 +350,6 @@ module Aws::Imagebuilder
381
350
 
382
351
  # Contains a key/value pair that sets the named component parameter.
383
352
  #
384
- # @note When making an API call, you may pass ComponentParameter
385
- # data as a hash:
386
- #
387
- # {
388
- # name: "ComponentParameterName", # required
389
- # value: ["ComponentParameterValue"], # required
390
- # }
391
- #
392
353
  # @!attribute [rw] name
393
354
  # The name of the component parameter to set.
394
355
  # @return [String]
@@ -472,13 +433,14 @@ module Aws::Imagebuilder
472
433
  # @return [String]
473
434
  #
474
435
  # @!attribute [rw] platform
475
- # The platform of the component.
436
+ # The operating system platform of the component.
476
437
  # @return [String]
477
438
  #
478
439
  # @!attribute [rw] supported_os_versions
479
- # The operating system (OS) version supported by the component. If the
480
- # OS information is available, a prefix match is performed against the
481
- # base image OS version during image recipe creation.
440
+ # The operating system (OS) version that the component supports. If
441
+ # the OS information is available, Image Builder performs a prefix
442
+ # match against the base image OS version during image recipe
443
+ # creation.
482
444
  # @return [Array<String>]
483
445
  #
484
446
  # @!attribute [rw] state
@@ -486,8 +448,8 @@ module Aws::Imagebuilder
486
448
  # @return [Types::ComponentState]
487
449
  #
488
450
  # @!attribute [rw] type
489
- # The type of the component denotes whether the component is used to
490
- # build the image or only to test it.
451
+ # The component type specifies whether Image Builder uses the
452
+ # component to build the image or only to test it.
491
453
  # @return [String]
492
454
  #
493
455
  # @!attribute [rw] owner
@@ -499,17 +461,28 @@ module Aws::Imagebuilder
499
461
  # @return [String]
500
462
  #
501
463
  # @!attribute [rw] change_description
502
- # The change description of the component.
464
+ # The change description for the current version of the component.
503
465
  # @return [String]
504
466
  #
505
467
  # @!attribute [rw] date_created
506
- # The date that the component was created.
468
+ # The original creation date of the component.
507
469
  # @return [String]
508
470
  #
509
471
  # @!attribute [rw] tags
510
- # The tags associated with the component.
472
+ # The tags that apply to the component.
511
473
  # @return [Hash<String,String>]
512
474
  #
475
+ # @!attribute [rw] publisher
476
+ # Contains the name of the publisher if this is a third-party
477
+ # component. Otherwise, this property is empty.
478
+ # @return [String]
479
+ #
480
+ # @!attribute [rw] obfuscate
481
+ # Indicates whether component source is hidden from view in the
482
+ # console, and from component detail results for API, CLI, or SDK
483
+ # operations.
484
+ # @return [Boolean]
485
+ #
513
486
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ComponentSummary AWS API Documentation
514
487
  #
515
488
  class ComponentSummary < Struct.new(
@@ -524,7 +497,9 @@ module Aws::Imagebuilder
524
497
  :description,
525
498
  :change_description,
526
499
  :date_created,
527
- :tags)
500
+ :tags,
501
+ :publisher,
502
+ :obfuscate)
528
503
  SENSITIVE = []
529
504
  include Aws::Structure
530
505
  end
@@ -647,18 +622,6 @@ module Aws::Imagebuilder
647
622
  # Container distribution settings for encryption, licensing, and sharing
648
623
  # in a specific Region.
649
624
  #
650
- # @note When making an API call, you may pass ContainerDistributionConfiguration
651
- # data as a hash:
652
- #
653
- # {
654
- # description: "NonEmptyString",
655
- # container_tags: ["NonEmptyString"],
656
- # target_repository: { # required
657
- # service: "ECR", # required, accepts ECR
658
- # repository_name: "NonEmptyString", # required
659
- # },
660
- # }
661
- #
662
625
  # @!attribute [rw] description
663
626
  # The description of the container distribution configuration.
664
627
  # @return [String]
@@ -750,8 +713,9 @@ module Aws::Imagebuilder
750
713
  # @return [String]
751
714
  #
752
715
  # @!attribute [rw] components
753
- # Components for build and test that are included in the container
754
- # recipe.
716
+ # Build and test components that are included in the container recipe.
717
+ # Recipes require a minimum of one build component, and can have a
718
+ # maximum of 20 build and test components in any combination.
755
719
  # @return [Array<Types::ComponentConfiguration>]
756
720
  #
757
721
  # @!attribute [rw] instance_configuration
@@ -869,25 +833,6 @@ module Aws::Imagebuilder
869
833
  include Aws::Structure
870
834
  end
871
835
 
872
- # @note When making an API call, you may pass CreateComponentRequest
873
- # data as a hash:
874
- #
875
- # {
876
- # name: "ResourceName", # required
877
- # semantic_version: "VersionNumber", # required
878
- # description: "NonEmptyString",
879
- # change_description: "NonEmptyString",
880
- # platform: "Windows", # required, accepts Windows, Linux
881
- # supported_os_versions: ["OsVersion"],
882
- # data: "InlineComponentData",
883
- # uri: "Uri",
884
- # kms_key_id: "NonEmptyString",
885
- # tags: {
886
- # "TagKey" => "TagValue",
887
- # },
888
- # client_token: "ClientToken", # required
889
- # }
890
- #
891
836
  # @!attribute [rw] name
892
837
  # The name of the component.
893
838
  # @return [String]
@@ -914,8 +859,7 @@ module Aws::Imagebuilder
914
859
  # @return [String]
915
860
  #
916
861
  # @!attribute [rw] description
917
- # The description of the component. Describes the contents of the
918
- # component.
862
+ # Describes the contents of the component.
919
863
  # @return [String]
920
864
  #
921
865
  # @!attribute [rw] change_description
@@ -925,7 +869,7 @@ module Aws::Imagebuilder
925
869
  # @return [String]
926
870
  #
927
871
  # @!attribute [rw] platform
928
- # The platform of the component.
872
+ # The operating system platform of the component.
929
873
  # @return [String]
930
874
  #
931
875
  # @!attribute [rw] supported_os_versions
@@ -952,11 +896,11 @@ module Aws::Imagebuilder
952
896
  # @return [String]
953
897
  #
954
898
  # @!attribute [rw] kms_key_id
955
- # The ID of the KMS key that should be used to encrypt this component.
899
+ # The ID of the KMS key that is used to encrypt this component.
956
900
  # @return [String]
957
901
  #
958
902
  # @!attribute [rw] tags
959
- # The tags of the component.
903
+ # The tags that apply to the component.
960
904
  # @return [Hash<String,String>]
961
905
  #
962
906
  # @!attribute [rw] client_token
@@ -1007,62 +951,6 @@ module Aws::Imagebuilder
1007
951
  include Aws::Structure
1008
952
  end
1009
953
 
1010
- # @note When making an API call, you may pass CreateContainerRecipeRequest
1011
- # data as a hash:
1012
- #
1013
- # {
1014
- # container_type: "DOCKER", # required, accepts DOCKER
1015
- # name: "ResourceName", # required
1016
- # description: "NonEmptyString",
1017
- # semantic_version: "VersionNumber", # required
1018
- # components: [ # required
1019
- # {
1020
- # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
1021
- # parameters: [
1022
- # {
1023
- # name: "ComponentParameterName", # required
1024
- # value: ["ComponentParameterValue"], # required
1025
- # },
1026
- # ],
1027
- # },
1028
- # ],
1029
- # instance_configuration: {
1030
- # image: "NonEmptyString",
1031
- # block_device_mappings: [
1032
- # {
1033
- # device_name: "NonEmptyString",
1034
- # ebs: {
1035
- # encrypted: false,
1036
- # delete_on_termination: false,
1037
- # iops: 1,
1038
- # kms_key_id: "NonEmptyString",
1039
- # snapshot_id: "NonEmptyString",
1040
- # volume_size: 1,
1041
- # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
1042
- # throughput: 1,
1043
- # },
1044
- # virtual_name: "NonEmptyString",
1045
- # no_device: "EmptyString",
1046
- # },
1047
- # ],
1048
- # },
1049
- # dockerfile_template_data: "InlineDockerFileTemplate",
1050
- # dockerfile_template_uri: "Uri",
1051
- # platform_override: "Windows", # accepts Windows, Linux
1052
- # image_os_version_override: "NonEmptyString",
1053
- # parent_image: "NonEmptyString", # required
1054
- # tags: {
1055
- # "TagKey" => "TagValue",
1056
- # },
1057
- # working_directory: "NonEmptyString",
1058
- # target_repository: { # required
1059
- # service: "ECR", # required, accepts ECR
1060
- # repository_name: "NonEmptyString", # required
1061
- # },
1062
- # kms_key_id: "NonEmptyString",
1063
- # client_token: "ClientToken", # required
1064
- # }
1065
- #
1066
954
  # @!attribute [rw] container_type
1067
955
  # The type of container to create.
1068
956
  # @return [String]
@@ -1098,7 +986,8 @@ module Aws::Imagebuilder
1098
986
  #
1099
987
  # @!attribute [rw] components
1100
988
  # Components for build and test that are included in the container
1101
- # recipe.
989
+ # recipe. Recipes require a minimum of one build component, and can
990
+ # have a maximum of 20 build and test components in any combination.
1102
991
  # @return [Array<Types::ComponentConfiguration>]
1103
992
  #
1104
993
  # @!attribute [rw] instance_configuration
@@ -1198,75 +1087,6 @@ module Aws::Imagebuilder
1198
1087
  include Aws::Structure
1199
1088
  end
1200
1089
 
1201
- # @note When making an API call, you may pass CreateDistributionConfigurationRequest
1202
- # data as a hash:
1203
- #
1204
- # {
1205
- # name: "ResourceName", # required
1206
- # description: "NonEmptyString",
1207
- # distributions: [ # required
1208
- # {
1209
- # region: "NonEmptyString", # required
1210
- # ami_distribution_configuration: {
1211
- # name: "AmiNameString",
1212
- # description: "NonEmptyString",
1213
- # target_account_ids: ["AccountId"],
1214
- # ami_tags: {
1215
- # "TagKey" => "TagValue",
1216
- # },
1217
- # kms_key_id: "NonEmptyString",
1218
- # launch_permission: {
1219
- # user_ids: ["AccountId"],
1220
- # user_groups: ["NonEmptyString"],
1221
- # organization_arns: ["OrganizationArn"],
1222
- # organizational_unit_arns: ["OrganizationalUnitArn"],
1223
- # },
1224
- # },
1225
- # container_distribution_configuration: {
1226
- # description: "NonEmptyString",
1227
- # container_tags: ["NonEmptyString"],
1228
- # target_repository: { # required
1229
- # service: "ECR", # required, accepts ECR
1230
- # repository_name: "NonEmptyString", # required
1231
- # },
1232
- # },
1233
- # license_configuration_arns: ["LicenseConfigurationArn"],
1234
- # launch_template_configurations: [
1235
- # {
1236
- # launch_template_id: "LaunchTemplateId", # required
1237
- # account_id: "AccountId",
1238
- # set_default_version: false,
1239
- # },
1240
- # ],
1241
- # s3_export_configuration: {
1242
- # role_name: "NonEmptyString", # required
1243
- # disk_image_format: "VMDK", # required, accepts VMDK, RAW, VHD
1244
- # s3_bucket: "NonEmptyString", # required
1245
- # s3_prefix: "NonEmptyString",
1246
- # },
1247
- # fast_launch_configurations: [
1248
- # {
1249
- # enabled: false, # required
1250
- # snapshot_configuration: {
1251
- # target_resource_count: 1,
1252
- # },
1253
- # max_parallel_launches: 1,
1254
- # launch_template: {
1255
- # launch_template_id: "LaunchTemplateId",
1256
- # launch_template_name: "NonEmptyString",
1257
- # launch_template_version: "NonEmptyString",
1258
- # },
1259
- # account_id: "AccountId",
1260
- # },
1261
- # ],
1262
- # },
1263
- # ],
1264
- # tags: {
1265
- # "TagKey" => "TagValue",
1266
- # },
1267
- # client_token: "ClientToken", # required
1268
- # }
1269
- #
1270
1090
  # @!attribute [rw] name
1271
1091
  # The name of the distribution configuration.
1272
1092
  # @return [String]
@@ -1325,33 +1145,6 @@ module Aws::Imagebuilder
1325
1145
  include Aws::Structure
1326
1146
  end
1327
1147
 
1328
- # @note When making an API call, you may pass CreateImagePipelineRequest
1329
- # data as a hash:
1330
- #
1331
- # {
1332
- # name: "ResourceName", # required
1333
- # description: "NonEmptyString",
1334
- # image_recipe_arn: "ImageRecipeArn",
1335
- # container_recipe_arn: "ContainerRecipeArn",
1336
- # infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
1337
- # distribution_configuration_arn: "DistributionConfigurationArn",
1338
- # image_tests_configuration: {
1339
- # image_tests_enabled: false,
1340
- # timeout_minutes: 1,
1341
- # },
1342
- # enhanced_image_metadata_enabled: false,
1343
- # schedule: {
1344
- # schedule_expression: "NonEmptyString",
1345
- # timezone: "Timezone",
1346
- # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
1347
- # },
1348
- # status: "DISABLED", # accepts DISABLED, ENABLED
1349
- # tags: {
1350
- # "TagKey" => "TagValue",
1351
- # },
1352
- # client_token: "ClientToken", # required
1353
- # }
1354
- #
1355
1148
  # @!attribute [rw] name
1356
1149
  # The name of the image pipeline.
1357
1150
  # @return [String]
@@ -1453,55 +1246,6 @@ module Aws::Imagebuilder
1453
1246
  include Aws::Structure
1454
1247
  end
1455
1248
 
1456
- # @note When making an API call, you may pass CreateImageRecipeRequest
1457
- # data as a hash:
1458
- #
1459
- # {
1460
- # name: "ResourceName", # required
1461
- # description: "NonEmptyString",
1462
- # semantic_version: "VersionNumber", # required
1463
- # components: [ # required
1464
- # {
1465
- # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
1466
- # parameters: [
1467
- # {
1468
- # name: "ComponentParameterName", # required
1469
- # value: ["ComponentParameterValue"], # required
1470
- # },
1471
- # ],
1472
- # },
1473
- # ],
1474
- # parent_image: "NonEmptyString", # required
1475
- # block_device_mappings: [
1476
- # {
1477
- # device_name: "NonEmptyString",
1478
- # ebs: {
1479
- # encrypted: false,
1480
- # delete_on_termination: false,
1481
- # iops: 1,
1482
- # kms_key_id: "NonEmptyString",
1483
- # snapshot_id: "NonEmptyString",
1484
- # volume_size: 1,
1485
- # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
1486
- # throughput: 1,
1487
- # },
1488
- # virtual_name: "NonEmptyString",
1489
- # no_device: "EmptyString",
1490
- # },
1491
- # ],
1492
- # tags: {
1493
- # "TagKey" => "TagValue",
1494
- # },
1495
- # working_directory: "NonEmptyString",
1496
- # additional_instance_configuration: {
1497
- # systems_manager_agent: {
1498
- # uninstall_after_build: false,
1499
- # },
1500
- # user_data_override: "UserDataOverride",
1501
- # },
1502
- # client_token: "ClientToken", # required
1503
- # }
1504
- #
1505
1249
  # @!attribute [rw] name
1506
1250
  # The name of the image recipe.
1507
1251
  # @return [String]
@@ -1532,7 +1276,7 @@ module Aws::Imagebuilder
1532
1276
  # @return [String]
1533
1277
  #
1534
1278
  # @!attribute [rw] components
1535
- # The components of the image recipe.
1279
+ # The components included in the image recipe.
1536
1280
  # @return [Array<Types::ComponentConfiguration>]
1537
1281
  #
1538
1282
  # @!attribute [rw] parent_image
@@ -1610,25 +1354,6 @@ module Aws::Imagebuilder
1610
1354
  include Aws::Structure
1611
1355
  end
1612
1356
 
1613
- # @note When making an API call, you may pass CreateImageRequest
1614
- # data as a hash:
1615
- #
1616
- # {
1617
- # image_recipe_arn: "ImageRecipeArn",
1618
- # container_recipe_arn: "ContainerRecipeArn",
1619
- # distribution_configuration_arn: "DistributionConfigurationArn",
1620
- # infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
1621
- # image_tests_configuration: {
1622
- # image_tests_enabled: false,
1623
- # timeout_minutes: 1,
1624
- # },
1625
- # enhanced_image_metadata_enabled: false,
1626
- # tags: {
1627
- # "TagKey" => "TagValue",
1628
- # },
1629
- # client_token: "ClientToken", # required
1630
- # }
1631
- #
1632
1357
  # @!attribute [rw] image_recipe_arn
1633
1358
  # The Amazon Resource Name (ARN) of the image recipe that defines how
1634
1359
  # images are configured, tested, and assessed.
@@ -1710,38 +1435,6 @@ module Aws::Imagebuilder
1710
1435
  include Aws::Structure
1711
1436
  end
1712
1437
 
1713
- # @note When making an API call, you may pass CreateInfrastructureConfigurationRequest
1714
- # data as a hash:
1715
- #
1716
- # {
1717
- # name: "ResourceName", # required
1718
- # description: "NonEmptyString",
1719
- # instance_types: ["InstanceType"],
1720
- # instance_profile_name: "InstanceProfileNameType", # required
1721
- # security_group_ids: ["NonEmptyString"],
1722
- # subnet_id: "NonEmptyString",
1723
- # logging: {
1724
- # s3_logs: {
1725
- # s3_bucket_name: "NonEmptyString",
1726
- # s3_key_prefix: "NonEmptyString",
1727
- # },
1728
- # },
1729
- # key_pair: "NonEmptyString",
1730
- # terminate_instance_on_failure: false,
1731
- # sns_topic_arn: "SnsTopicArn",
1732
- # resource_tags: {
1733
- # "TagKey" => "TagValue",
1734
- # },
1735
- # instance_metadata_options: {
1736
- # http_tokens: "HttpTokens",
1737
- # http_put_response_hop_limit: 1,
1738
- # },
1739
- # tags: {
1740
- # "TagKey" => "TagValue",
1741
- # },
1742
- # client_token: "ClientToken", # required
1743
- # }
1744
- #
1745
1438
  # @!attribute [rw] name
1746
1439
  # The name of the infrastructure configuration.
1747
1440
  # @return [String]
@@ -1863,13 +1556,6 @@ module Aws::Imagebuilder
1863
1556
  include Aws::Structure
1864
1557
  end
1865
1558
 
1866
- # @note When making an API call, you may pass DeleteComponentRequest
1867
- # data as a hash:
1868
- #
1869
- # {
1870
- # component_build_version_arn: "ComponentBuildVersionArn", # required
1871
- # }
1872
- #
1873
1559
  # @!attribute [rw] component_build_version_arn
1874
1560
  # The Amazon Resource Name (ARN) of the component build version to
1875
1561
  # delete.
@@ -1901,13 +1587,6 @@ module Aws::Imagebuilder
1901
1587
  include Aws::Structure
1902
1588
  end
1903
1589
 
1904
- # @note When making an API call, you may pass DeleteContainerRecipeRequest
1905
- # data as a hash:
1906
- #
1907
- # {
1908
- # container_recipe_arn: "ContainerRecipeArn", # required
1909
- # }
1910
- #
1911
1590
  # @!attribute [rw] container_recipe_arn
1912
1591
  # The Amazon Resource Name (ARN) of the container recipe to delete.
1913
1592
  # @return [String]
@@ -1938,13 +1617,6 @@ module Aws::Imagebuilder
1938
1617
  include Aws::Structure
1939
1618
  end
1940
1619
 
1941
- # @note When making an API call, you may pass DeleteDistributionConfigurationRequest
1942
- # data as a hash:
1943
- #
1944
- # {
1945
- # distribution_configuration_arn: "DistributionConfigurationArn", # required
1946
- # }
1947
- #
1948
1620
  # @!attribute [rw] distribution_configuration_arn
1949
1621
  # The Amazon Resource Name (ARN) of the distribution configuration to
1950
1622
  # delete.
@@ -1976,13 +1648,6 @@ module Aws::Imagebuilder
1976
1648
  include Aws::Structure
1977
1649
  end
1978
1650
 
1979
- # @note When making an API call, you may pass DeleteImagePipelineRequest
1980
- # data as a hash:
1981
- #
1982
- # {
1983
- # image_pipeline_arn: "ImagePipelineArn", # required
1984
- # }
1985
- #
1986
1651
  # @!attribute [rw] image_pipeline_arn
1987
1652
  # The Amazon Resource Name (ARN) of the image pipeline to delete.
1988
1653
  # @return [String]
@@ -2013,13 +1678,6 @@ module Aws::Imagebuilder
2013
1678
  include Aws::Structure
2014
1679
  end
2015
1680
 
2016
- # @note When making an API call, you may pass DeleteImageRecipeRequest
2017
- # data as a hash:
2018
- #
2019
- # {
2020
- # image_recipe_arn: "ImageRecipeArn", # required
2021
- # }
2022
- #
2023
1681
  # @!attribute [rw] image_recipe_arn
2024
1682
  # The Amazon Resource Name (ARN) of the image recipe to delete.
2025
1683
  # @return [String]
@@ -2049,13 +1707,6 @@ module Aws::Imagebuilder
2049
1707
  include Aws::Structure
2050
1708
  end
2051
1709
 
2052
- # @note When making an API call, you may pass DeleteImageRequest
2053
- # data as a hash:
2054
- #
2055
- # {
2056
- # image_build_version_arn: "ImageBuildVersionArn", # required
2057
- # }
2058
- #
2059
1710
  # @!attribute [rw] image_build_version_arn
2060
1711
  # The Amazon Resource Name (ARN) of the Image Builder image resource
2061
1712
  # to delete.
@@ -2087,13 +1738,6 @@ module Aws::Imagebuilder
2087
1738
  include Aws::Structure
2088
1739
  end
2089
1740
 
2090
- # @note When making an API call, you may pass DeleteInfrastructureConfigurationRequest
2091
- # data as a hash:
2092
- #
2093
- # {
2094
- # infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
2095
- # }
2096
- #
2097
1741
  # @!attribute [rw] infrastructure_configuration_arn
2098
1742
  # The Amazon Resource Name (ARN) of the infrastructure configuration
2099
1743
  # to delete.
@@ -2127,65 +1771,6 @@ module Aws::Imagebuilder
2127
1771
 
2128
1772
  # Defines the settings for a specific Region.
2129
1773
  #
2130
- # @note When making an API call, you may pass Distribution
2131
- # data as a hash:
2132
- #
2133
- # {
2134
- # region: "NonEmptyString", # required
2135
- # ami_distribution_configuration: {
2136
- # name: "AmiNameString",
2137
- # description: "NonEmptyString",
2138
- # target_account_ids: ["AccountId"],
2139
- # ami_tags: {
2140
- # "TagKey" => "TagValue",
2141
- # },
2142
- # kms_key_id: "NonEmptyString",
2143
- # launch_permission: {
2144
- # user_ids: ["AccountId"],
2145
- # user_groups: ["NonEmptyString"],
2146
- # organization_arns: ["OrganizationArn"],
2147
- # organizational_unit_arns: ["OrganizationalUnitArn"],
2148
- # },
2149
- # },
2150
- # container_distribution_configuration: {
2151
- # description: "NonEmptyString",
2152
- # container_tags: ["NonEmptyString"],
2153
- # target_repository: { # required
2154
- # service: "ECR", # required, accepts ECR
2155
- # repository_name: "NonEmptyString", # required
2156
- # },
2157
- # },
2158
- # license_configuration_arns: ["LicenseConfigurationArn"],
2159
- # launch_template_configurations: [
2160
- # {
2161
- # launch_template_id: "LaunchTemplateId", # required
2162
- # account_id: "AccountId",
2163
- # set_default_version: false,
2164
- # },
2165
- # ],
2166
- # s3_export_configuration: {
2167
- # role_name: "NonEmptyString", # required
2168
- # disk_image_format: "VMDK", # required, accepts VMDK, RAW, VHD
2169
- # s3_bucket: "NonEmptyString", # required
2170
- # s3_prefix: "NonEmptyString",
2171
- # },
2172
- # fast_launch_configurations: [
2173
- # {
2174
- # enabled: false, # required
2175
- # snapshot_configuration: {
2176
- # target_resource_count: 1,
2177
- # },
2178
- # max_parallel_launches: 1,
2179
- # launch_template: {
2180
- # launch_template_id: "LaunchTemplateId",
2181
- # launch_template_name: "NonEmptyString",
2182
- # launch_template_version: "NonEmptyString",
2183
- # },
2184
- # account_id: "AccountId",
2185
- # },
2186
- # ],
2187
- # }
2188
- #
2189
1774
  # @!attribute [rw] region
2190
1775
  # The target Region.
2191
1776
  # @return [String]
@@ -2331,20 +1916,6 @@ module Aws::Imagebuilder
2331
1916
 
2332
1917
  # Amazon EBS-specific block device mapping specifications.
2333
1918
  #
2334
- # @note When making an API call, you may pass EbsInstanceBlockDeviceSpecification
2335
- # data as a hash:
2336
- #
2337
- # {
2338
- # encrypted: false,
2339
- # delete_on_termination: false,
2340
- # iops: 1,
2341
- # kms_key_id: "NonEmptyString",
2342
- # snapshot_id: "NonEmptyString",
2343
- # volume_size: 1,
2344
- # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
2345
- # throughput: 1,
2346
- # }
2347
- #
2348
1919
  # @!attribute [rw] encrypted
2349
1920
  # Use to configure device encryption.
2350
1921
  # @return [Boolean]
@@ -2395,23 +1966,6 @@ module Aws::Imagebuilder
2395
1966
 
2396
1967
  # Define and configure faster launching for output Windows AMIs.
2397
1968
  #
2398
- # @note When making an API call, you may pass FastLaunchConfiguration
2399
- # data as a hash:
2400
- #
2401
- # {
2402
- # enabled: false, # required
2403
- # snapshot_configuration: {
2404
- # target_resource_count: 1,
2405
- # },
2406
- # max_parallel_launches: 1,
2407
- # launch_template: {
2408
- # launch_template_id: "LaunchTemplateId",
2409
- # launch_template_name: "NonEmptyString",
2410
- # launch_template_version: "NonEmptyString",
2411
- # },
2412
- # account_id: "AccountId",
2413
- # }
2414
- #
2415
1969
  # @!attribute [rw] enabled
2416
1970
  # A Boolean that represents the current state of faster launching for
2417
1971
  # the Windows AMI. Set to `true` to start using Windows faster
@@ -2459,15 +2013,6 @@ module Aws::Imagebuilder
2459
2013
  #
2460
2014
  # </note>
2461
2015
  #
2462
- # @note When making an API call, you may pass FastLaunchLaunchTemplateSpecification
2463
- # data as a hash:
2464
- #
2465
- # {
2466
- # launch_template_id: "LaunchTemplateId",
2467
- # launch_template_name: "NonEmptyString",
2468
- # launch_template_version: "NonEmptyString",
2469
- # }
2470
- #
2471
2016
  # @!attribute [rw] launch_template_id
2472
2017
  # The ID of the launch template to use for faster launching for a
2473
2018
  # Windows AMI.
@@ -2496,13 +2041,6 @@ module Aws::Imagebuilder
2496
2041
  # Configuration settings for creating and managing pre-provisioned
2497
2042
  # snapshots for a fast-launch enabled Windows AMI.
2498
2043
  #
2499
- # @note When making an API call, you may pass FastLaunchSnapshotConfiguration
2500
- # data as a hash:
2501
- #
2502
- # {
2503
- # target_resource_count: 1,
2504
- # }
2505
- #
2506
2044
  # @!attribute [rw] target_resource_count
2507
2045
  # The number of pre-provisioned snapshots to keep on hand for a
2508
2046
  # fast-launch enabled Windows AMI.
@@ -2521,14 +2059,6 @@ module Aws::Imagebuilder
2521
2059
  # set of resources by specific criteria, such as tags, attributes, or
2522
2060
  # IDs.
2523
2061
  #
2524
- # @note When making an API call, you may pass Filter
2525
- # data as a hash:
2526
- #
2527
- # {
2528
- # name: "FilterName",
2529
- # values: ["FilterValue"],
2530
- # }
2531
- #
2532
2062
  # @!attribute [rw] name
2533
2063
  # The name of the filter. Filter names are case-sensitive.
2534
2064
  # @return [String]
@@ -2559,13 +2089,6 @@ module Aws::Imagebuilder
2559
2089
  include Aws::Structure
2560
2090
  end
2561
2091
 
2562
- # @note When making an API call, you may pass GetComponentPolicyRequest
2563
- # data as a hash:
2564
- #
2565
- # {
2566
- # component_arn: "ComponentBuildVersionArn", # required
2567
- # }
2568
- #
2569
2092
  # @!attribute [rw] component_arn
2570
2093
  # The Amazon Resource Name (ARN) of the component whose policy you
2571
2094
  # want to retrieve.
@@ -2596,13 +2119,6 @@ module Aws::Imagebuilder
2596
2119
  include Aws::Structure
2597
2120
  end
2598
2121
 
2599
- # @note When making an API call, you may pass GetComponentRequest
2600
- # data as a hash:
2601
- #
2602
- # {
2603
- # component_build_version_arn: "ComponentVersionArnOrBuildVersionArn", # required
2604
- # }
2605
- #
2606
2122
  # @!attribute [rw] component_build_version_arn
2607
2123
  # The Amazon Resource Name (ARN) of the component that you want to
2608
2124
  # retrieve. Regex requires "/\\d+$" suffix.
@@ -2633,13 +2149,6 @@ module Aws::Imagebuilder
2633
2149
  include Aws::Structure
2634
2150
  end
2635
2151
 
2636
- # @note When making an API call, you may pass GetContainerRecipePolicyRequest
2637
- # data as a hash:
2638
- #
2639
- # {
2640
- # container_recipe_arn: "ContainerRecipeArn", # required
2641
- # }
2642
- #
2643
2152
  # @!attribute [rw] container_recipe_arn
2644
2153
  # The Amazon Resource Name (ARN) of the container recipe for the
2645
2154
  # policy being requested.
@@ -2670,13 +2179,6 @@ module Aws::Imagebuilder
2670
2179
  include Aws::Structure
2671
2180
  end
2672
2181
 
2673
- # @note When making an API call, you may pass GetContainerRecipeRequest
2674
- # data as a hash:
2675
- #
2676
- # {
2677
- # container_recipe_arn: "ContainerRecipeArn", # required
2678
- # }
2679
- #
2680
2182
  # @!attribute [rw] container_recipe_arn
2681
2183
  # The Amazon Resource Name (ARN) of the container recipe to retrieve.
2682
2184
  # @return [String]
@@ -2706,13 +2208,6 @@ module Aws::Imagebuilder
2706
2208
  include Aws::Structure
2707
2209
  end
2708
2210
 
2709
- # @note When making an API call, you may pass GetDistributionConfigurationRequest
2710
- # data as a hash:
2711
- #
2712
- # {
2713
- # distribution_configuration_arn: "DistributionConfigurationArn", # required
2714
- # }
2715
- #
2716
2211
  # @!attribute [rw] distribution_configuration_arn
2717
2212
  # The Amazon Resource Name (ARN) of the distribution configuration
2718
2213
  # that you want to retrieve.
@@ -2743,13 +2238,6 @@ module Aws::Imagebuilder
2743
2238
  include Aws::Structure
2744
2239
  end
2745
2240
 
2746
- # @note When making an API call, you may pass GetImagePipelineRequest
2747
- # data as a hash:
2748
- #
2749
- # {
2750
- # image_pipeline_arn: "ImagePipelineArn", # required
2751
- # }
2752
- #
2753
2241
  # @!attribute [rw] image_pipeline_arn
2754
2242
  # The Amazon Resource Name (ARN) of the image pipeline that you want
2755
2243
  # to retrieve.
@@ -2780,13 +2268,6 @@ module Aws::Imagebuilder
2780
2268
  include Aws::Structure
2781
2269
  end
2782
2270
 
2783
- # @note When making an API call, you may pass GetImagePolicyRequest
2784
- # data as a hash:
2785
- #
2786
- # {
2787
- # image_arn: "ImageBuildVersionArn", # required
2788
- # }
2789
- #
2790
2271
  # @!attribute [rw] image_arn
2791
2272
  # The Amazon Resource Name (ARN) of the image whose policy you want to
2792
2273
  # retrieve.
@@ -2817,13 +2298,6 @@ module Aws::Imagebuilder
2817
2298
  include Aws::Structure
2818
2299
  end
2819
2300
 
2820
- # @note When making an API call, you may pass GetImageRecipePolicyRequest
2821
- # data as a hash:
2822
- #
2823
- # {
2824
- # image_recipe_arn: "ImageRecipeArn", # required
2825
- # }
2826
- #
2827
2301
  # @!attribute [rw] image_recipe_arn
2828
2302
  # The Amazon Resource Name (ARN) of the image recipe whose policy you
2829
2303
  # want to retrieve.
@@ -2854,13 +2328,6 @@ module Aws::Imagebuilder
2854
2328
  include Aws::Structure
2855
2329
  end
2856
2330
 
2857
- # @note When making an API call, you may pass GetImageRecipeRequest
2858
- # data as a hash:
2859
- #
2860
- # {
2861
- # image_recipe_arn: "ImageRecipeArn", # required
2862
- # }
2863
- #
2864
2331
  # @!attribute [rw] image_recipe_arn
2865
2332
  # The Amazon Resource Name (ARN) of the image recipe that you want to
2866
2333
  # retrieve.
@@ -2891,13 +2358,6 @@ module Aws::Imagebuilder
2891
2358
  include Aws::Structure
2892
2359
  end
2893
2360
 
2894
- # @note When making an API call, you may pass GetImageRequest
2895
- # data as a hash:
2896
- #
2897
- # {
2898
- # image_build_version_arn: "ImageVersionArnOrBuildVersionArn", # required
2899
- # }
2900
- #
2901
2361
  # @!attribute [rw] image_build_version_arn
2902
2362
  # The Amazon Resource Name (ARN) of the image that you want to
2903
2363
  # retrieve.
@@ -2930,13 +2390,6 @@ module Aws::Imagebuilder
2930
2390
 
2931
2391
  # GetInfrastructureConfiguration request object.
2932
2392
  #
2933
- # @note When making an API call, you may pass GetInfrastructureConfigurationRequest
2934
- # data as a hash:
2935
- #
2936
- # {
2937
- # infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
2938
- # }
2939
- #
2940
2393
  # @!attribute [rw] infrastructure_configuration_arn
2941
2394
  # The Amazon Resource Name (ARN) of the infrastructure configuration
2942
2395
  # that you want to retrieve.
@@ -3009,7 +2462,7 @@ module Aws::Imagebuilder
3009
2462
  # @return [String]
3010
2463
  #
3011
2464
  # @!attribute [rw] type
3012
- # Specifies whether this is an AMI or container image.
2465
+ # Specifies whether this image produces an AMI or a container image.
3013
2466
  # @return [String]
3014
2467
  #
3015
2468
  # @!attribute [rw] name
@@ -3043,19 +2496,19 @@ module Aws::Imagebuilder
3043
2496
  # @return [String]
3044
2497
  #
3045
2498
  # @!attribute [rw] platform
3046
- # The platform of the image.
2499
+ # The image operating system platform, such as Linux or Windows.
3047
2500
  # @return [String]
3048
2501
  #
3049
2502
  # @!attribute [rw] enhanced_image_metadata_enabled
3050
- # Collects additional information about the image being created,
3051
- # including the operating system (OS) version and package list. This
3052
- # information is used to enhance the overall experience of using EC2
3053
- # Image Builder. Enabled by default.
2503
+ # Indicates whether Image Builder collects additional information
2504
+ # about the image, such as the operating system (OS) version and
2505
+ # package list.
3054
2506
  # @return [Boolean]
3055
2507
  #
3056
2508
  # @!attribute [rw] os_version
3057
- # The operating system version of the instance. For example, Amazon
3058
- # Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
2509
+ # The operating system version for instances that launch from this
2510
+ # image. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows
2511
+ # Server 2019.
3059
2512
  # @return [String]
3060
2513
  #
3061
2514
  # @!attribute [rw] state
@@ -3063,11 +2516,15 @@ module Aws::Imagebuilder
3063
2516
  # @return [Types::ImageState]
3064
2517
  #
3065
2518
  # @!attribute [rw] image_recipe
3066
- # The image recipe used when creating the image.
2519
+ # For images that distribute an AMI, this is the image recipe that
2520
+ # Image Builder used to create the image. For container images, this
2521
+ # is empty.
3067
2522
  # @return [Types::ImageRecipe]
3068
2523
  #
3069
2524
  # @!attribute [rw] container_recipe
3070
- # The recipe that is used to create an Image Builder container image.
2525
+ # For container images, this is the container recipe that Image
2526
+ # Builder used to create the image. For images that distribute an AMI,
2527
+ # this is empty.
3071
2528
  # @return [Types::ContainerRecipe]
3072
2529
  #
3073
2530
  # @!attribute [rw] source_pipeline_name
@@ -3080,27 +2537,28 @@ module Aws::Imagebuilder
3080
2537
  # @return [String]
3081
2538
  #
3082
2539
  # @!attribute [rw] infrastructure_configuration
3083
- # The infrastructure used when creating this image.
2540
+ # The infrastructure that Image Builder used to create this image.
3084
2541
  # @return [Types::InfrastructureConfiguration]
3085
2542
  #
3086
2543
  # @!attribute [rw] distribution_configuration
3087
- # The distribution configuration used when creating this image.
2544
+ # The distribution configuration that Image Builder used to create
2545
+ # this image.
3088
2546
  # @return [Types::DistributionConfiguration]
3089
2547
  #
3090
2548
  # @!attribute [rw] image_tests_configuration
3091
- # The image tests configuration used when creating this image.
2549
+ # The image tests that ran when that Image Builder created this image.
3092
2550
  # @return [Types::ImageTestsConfiguration]
3093
2551
  #
3094
2552
  # @!attribute [rw] date_created
3095
- # The date on which this image was created.
2553
+ # The date on which Image Builder created this image.
3096
2554
  # @return [String]
3097
2555
  #
3098
2556
  # @!attribute [rw] output_resources
3099
- # The output resources produced when creating this image.
2557
+ # The output resources that Image Builder produces for this image.
3100
2558
  # @return [Types::OutputResources]
3101
2559
  #
3102
2560
  # @!attribute [rw] tags
3103
- # The tags of the image.
2561
+ # The tags that apply to this image.
3104
2562
  # @return [Hash<String,String>]
3105
2563
  #
3106
2564
  # @!attribute [rw] build_type
@@ -3116,6 +2574,11 @@ module Aws::Imagebuilder
3116
2574
  # image for the recipe.
3117
2575
  # @return [String]
3118
2576
  #
2577
+ # @!attribute [rw] image_source
2578
+ # The origin of the base image that Image Builder used to build this
2579
+ # image.
2580
+ # @return [String]
2581
+ #
3119
2582
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Image AWS API Documentation
3120
2583
  #
3121
2584
  class Image < Struct.new(
@@ -3137,7 +2600,8 @@ module Aws::Imagebuilder
3137
2600
  :date_created,
3138
2601
  :output_resources,
3139
2602
  :tags,
3140
- :build_type)
2603
+ :build_type,
2604
+ :image_source)
3141
2605
  SENSITIVE = []
3142
2606
  include Aws::Structure
3143
2607
  end
@@ -3229,11 +2693,11 @@ module Aws::Imagebuilder
3229
2693
  # @return [String]
3230
2694
  #
3231
2695
  # @!attribute [rw] date_last_run
3232
- # The date on which this image pipeline was last run.
2696
+ # This is no longer supported, and does not return a value.
3233
2697
  # @return [String]
3234
2698
  #
3235
2699
  # @!attribute [rw] date_next_run
3236
- # The date on which this image pipeline will next be run.
2700
+ # This is no longer supported, and does not return a value.
3237
2701
  # @return [String]
3238
2702
  #
3239
2703
  # @!attribute [rw] tags
@@ -3296,7 +2760,9 @@ module Aws::Imagebuilder
3296
2760
  # @return [String]
3297
2761
  #
3298
2762
  # @!attribute [rw] components
3299
- # The components of the image recipe.
2763
+ # The components that are included in the image recipe. Recipes
2764
+ # require a minimum of one build component, and can have a maximum of
2765
+ # 20 build and test components in any combination.
3300
2766
  # @return [Array<Types::ComponentConfiguration>]
3301
2767
  #
3302
2768
  # @!attribute [rw] parent_image
@@ -3423,7 +2889,7 @@ module Aws::Imagebuilder
3423
2889
  # @return [String]
3424
2890
  #
3425
2891
  # @!attribute [rw] type
3426
- # Specifies whether this is an AMI or container image.
2892
+ # Specifies whether this image produces an AMI or a container image.
3427
2893
  # @return [String]
3428
2894
  #
3429
2895
  # @!attribute [rw] version
@@ -3431,12 +2897,13 @@ module Aws::Imagebuilder
3431
2897
  # @return [String]
3432
2898
  #
3433
2899
  # @!attribute [rw] platform
3434
- # The platform of the image.
2900
+ # The image operating system platform, such as Linux or Windows.
3435
2901
  # @return [String]
3436
2902
  #
3437
2903
  # @!attribute [rw] os_version
3438
- # The operating system version of the instance. For example, Amazon
3439
- # Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
2904
+ # The operating system version of the instances that launch from this
2905
+ # image. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows
2906
+ # Server 2019.
3440
2907
  # @return [String]
3441
2908
  #
3442
2909
  # @!attribute [rw] state
@@ -3448,15 +2915,16 @@ module Aws::Imagebuilder
3448
2915
  # @return [String]
3449
2916
  #
3450
2917
  # @!attribute [rw] date_created
3451
- # The date on which this image was created.
2918
+ # The date on which Image Builder created this image.
3452
2919
  # @return [String]
3453
2920
  #
3454
2921
  # @!attribute [rw] output_resources
3455
- # The output resources produced when creating this image.
2922
+ # The output resources that Image Builder produced when it created
2923
+ # this image.
3456
2924
  # @return [Types::OutputResources]
3457
2925
  #
3458
2926
  # @!attribute [rw] tags
3459
- # The tags of the image.
2927
+ # The tags that apply to this image.
3460
2928
  # @return [Hash<String,String>]
3461
2929
  #
3462
2930
  # @!attribute [rw] build_type
@@ -3472,6 +2940,11 @@ module Aws::Imagebuilder
3472
2940
  # image for the recipe.
3473
2941
  # @return [String]
3474
2942
  #
2943
+ # @!attribute [rw] image_source
2944
+ # The origin of the base image that Image Builder used to build this
2945
+ # image.
2946
+ # @return [String]
2947
+ #
3475
2948
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageSummary AWS API Documentation
3476
2949
  #
3477
2950
  class ImageSummary < Struct.new(
@@ -3486,7 +2959,8 @@ module Aws::Imagebuilder
3486
2959
  :date_created,
3487
2960
  :output_resources,
3488
2961
  :tags,
3489
- :build_type)
2962
+ :build_type,
2963
+ :image_source)
3490
2964
  SENSITIVE = []
3491
2965
  include Aws::Structure
3492
2966
  end
@@ -3495,14 +2969,6 @@ module Aws::Imagebuilder
3495
2969
  # building the image, to verify that the AMI or container image is valid
3496
2970
  # before distributing it.
3497
2971
  #
3498
- # @note When making an API call, you may pass ImageTestsConfiguration
3499
- # data as a hash:
3500
- #
3501
- # {
3502
- # image_tests_enabled: false,
3503
- # timeout_minutes: 1,
3504
- # }
3505
- #
3506
2972
  # @!attribute [rw] image_tests_enabled
3507
2973
  # Determines if tests should run after building the image. Image
3508
2974
  # Builder defaults to enable tests to run following the image build,
@@ -3511,6 +2977,11 @@ module Aws::Imagebuilder
3511
2977
  #
3512
2978
  # @!attribute [rw] timeout_minutes
3513
2979
  # The maximum time in minutes that tests are permitted to run.
2980
+ #
2981
+ # <note markdown="1"> The timeoutMinutes attribute is not currently active. This value is
2982
+ # ignored.
2983
+ #
2984
+ # </note>
3514
2985
  # @return [Integer]
3515
2986
  #
3516
2987
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageTestsConfiguration AWS API Documentation
@@ -3550,7 +3021,7 @@ module Aws::Imagebuilder
3550
3021
  # @return [String]
3551
3022
  #
3552
3023
  # @!attribute [rw] type
3553
- # Specifies whether this image is an AMI or a container image.
3024
+ # Specifies whether this image produces an AMI or a container image.
3554
3025
  # @return [String]
3555
3026
  #
3556
3027
  # @!attribute [rw] version
@@ -3581,8 +3052,8 @@ module Aws::Imagebuilder
3581
3052
  # @return [String]
3582
3053
  #
3583
3054
  # @!attribute [rw] platform
3584
- # The platform of the image version, for example "Windows" or
3585
- # "Linux".
3055
+ # The operating system platform of the image version, for example
3056
+ # "Windows" or "Linux".
3586
3057
  # @return [String]
3587
3058
  #
3588
3059
  # @!attribute [rw] os_version
@@ -3613,6 +3084,11 @@ module Aws::Imagebuilder
3613
3084
  # image for the recipe.
3614
3085
  # @return [String]
3615
3086
  #
3087
+ # @!attribute [rw] image_source
3088
+ # The origin of the base image that Image Builder used to build this
3089
+ # image.
3090
+ # @return [String]
3091
+ #
3616
3092
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageVersion AWS API Documentation
3617
3093
  #
3618
3094
  class ImageVersion < Struct.new(
@@ -3624,31 +3100,12 @@ module Aws::Imagebuilder
3624
3100
  :os_version,
3625
3101
  :owner,
3626
3102
  :date_created,
3627
- :build_type)
3103
+ :build_type,
3104
+ :image_source)
3628
3105
  SENSITIVE = []
3629
3106
  include Aws::Structure
3630
3107
  end
3631
3108
 
3632
- # @note When making an API call, you may pass ImportComponentRequest
3633
- # data as a hash:
3634
- #
3635
- # {
3636
- # name: "ResourceName", # required
3637
- # semantic_version: "VersionNumber", # required
3638
- # description: "NonEmptyString",
3639
- # change_description: "NonEmptyString",
3640
- # type: "BUILD", # required, accepts BUILD, TEST
3641
- # format: "SHELL", # required, accepts SHELL
3642
- # platform: "Windows", # required, accepts Windows, Linux
3643
- # data: "NonEmptyString",
3644
- # uri: "Uri",
3645
- # kms_key_id: "NonEmptyString",
3646
- # tags: {
3647
- # "TagKey" => "TagValue",
3648
- # },
3649
- # client_token: "ClientToken", # required
3650
- # }
3651
- #
3652
3109
  # @!attribute [rw] name
3653
3110
  # The name of the component.
3654
3111
  # @return [String]
@@ -3764,22 +3221,6 @@ module Aws::Imagebuilder
3764
3221
  include Aws::Structure
3765
3222
  end
3766
3223
 
3767
- # @note When making an API call, you may pass ImportVmImageRequest
3768
- # data as a hash:
3769
- #
3770
- # {
3771
- # name: "NonEmptyString", # required
3772
- # semantic_version: "VersionNumber", # required
3773
- # description: "NonEmptyString",
3774
- # platform: "Windows", # required, accepts Windows, Linux
3775
- # os_version: "OsVersion",
3776
- # vm_import_task_id: "NonEmptyString", # required
3777
- # tags: {
3778
- # "TagKey" => "TagValue",
3779
- # },
3780
- # client_token: "ClientToken", # required
3781
- # }
3782
- #
3783
3224
  # @!attribute [rw] name
3784
3225
  # The name of the base image that is created by the import process.
3785
3226
  # @return [String]
@@ -4038,25 +3479,6 @@ module Aws::Imagebuilder
4038
3479
  # Defines block device mappings for the instance used to configure your
4039
3480
  # image.
4040
3481
  #
4041
- # @note When making an API call, you may pass InstanceBlockDeviceMapping
4042
- # data as a hash:
4043
- #
4044
- # {
4045
- # device_name: "NonEmptyString",
4046
- # ebs: {
4047
- # encrypted: false,
4048
- # delete_on_termination: false,
4049
- # iops: 1,
4050
- # kms_key_id: "NonEmptyString",
4051
- # snapshot_id: "NonEmptyString",
4052
- # volume_size: 1,
4053
- # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
4054
- # throughput: 1,
4055
- # },
4056
- # virtual_name: "NonEmptyString",
4057
- # no_device: "EmptyString",
4058
- # }
4059
- #
4060
3482
  # @!attribute [rw] device_name
4061
3483
  # The device to which these mappings apply.
4062
3484
  # @return [String]
@@ -4087,30 +3509,6 @@ module Aws::Imagebuilder
4087
3509
  # Defines a custom base AMI and block device mapping configurations of
4088
3510
  # an instance used for building and testing container images.
4089
3511
  #
4090
- # @note When making an API call, you may pass InstanceConfiguration
4091
- # data as a hash:
4092
- #
4093
- # {
4094
- # image: "NonEmptyString",
4095
- # block_device_mappings: [
4096
- # {
4097
- # device_name: "NonEmptyString",
4098
- # ebs: {
4099
- # encrypted: false,
4100
- # delete_on_termination: false,
4101
- # iops: 1,
4102
- # kms_key_id: "NonEmptyString",
4103
- # snapshot_id: "NonEmptyString",
4104
- # volume_size: 1,
4105
- # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
4106
- # throughput: 1,
4107
- # },
4108
- # virtual_name: "NonEmptyString",
4109
- # no_device: "EmptyString",
4110
- # },
4111
- # ],
4112
- # }
4113
- #
4114
3512
  # @!attribute [rw] image
4115
3513
  # The AMI ID to use as the base image for a container build and test
4116
3514
  # instance. If not specified, Image Builder will use the appropriate
@@ -4144,14 +3542,6 @@ module Aws::Imagebuilder
4144
3542
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
4145
3543
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
4146
3544
  #
4147
- # @note When making an API call, you may pass InstanceMetadataOptions
4148
- # data as a hash:
4149
- #
4150
- # {
4151
- # http_tokens: "HttpTokens",
4152
- # http_put_response_hop_limit: 1,
4153
- # }
4154
- #
4155
3545
  # @!attribute [rw] http_tokens
4156
3546
  # Indicates whether a signed token header is required for instance
4157
3547
  # metadata retrieval requests. The values affect the response as
@@ -4170,7 +3560,9 @@ module Aws::Imagebuilder
4170
3560
  #
4171
3561
  # @!attribute [rw] http_put_response_hop_limit
4172
3562
  # Limit the number of hops that an instance metadata request can
4173
- # traverse to reach its destination.
3563
+ # traverse to reach its destination. The default is one hop. However,
3564
+ # if HTTP tokens are required, container image builds need a minimum
3565
+ # of two hops.
4174
3566
  # @return [Integer]
4175
3567
  #
4176
3568
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InstanceMetadataOptions AWS API Documentation
@@ -4275,16 +3667,6 @@ module Aws::Imagebuilder
4275
3667
  #
4276
3668
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyImageAttribute.html
4277
3669
  #
4278
- # @note When making an API call, you may pass LaunchPermissionConfiguration
4279
- # data as a hash:
4280
- #
4281
- # {
4282
- # user_ids: ["AccountId"],
4283
- # user_groups: ["NonEmptyString"],
4284
- # organization_arns: ["OrganizationArn"],
4285
- # organizational_unit_arns: ["OrganizationalUnitArn"],
4286
- # }
4287
- #
4288
3670
  # @!attribute [rw] user_ids
4289
3671
  # The Amazon Web Services account ID.
4290
3672
  # @return [Array<String>]
@@ -4327,15 +3709,6 @@ module Aws::Imagebuilder
4327
3709
  # Identifies an Amazon EC2 launch template to use for a specific
4328
3710
  # account.
4329
3711
  #
4330
- # @note When making an API call, you may pass LaunchTemplateConfiguration
4331
- # data as a hash:
4332
- #
4333
- # {
4334
- # launch_template_id: "LaunchTemplateId", # required
4335
- # account_id: "AccountId",
4336
- # set_default_version: false,
4337
- # }
4338
- #
4339
3712
  # @!attribute [rw] launch_template_id
4340
3713
  # Identifies the Amazon EC2 launch template to use.
4341
3714
  # @return [String]
@@ -4359,15 +3732,6 @@ module Aws::Imagebuilder
4359
3732
  include Aws::Structure
4360
3733
  end
4361
3734
 
4362
- # @note When making an API call, you may pass ListComponentBuildVersionsRequest
4363
- # data as a hash:
4364
- #
4365
- # {
4366
- # component_version_arn: "ComponentVersionArn", # required
4367
- # max_results: 1,
4368
- # next_token: "PaginationToken",
4369
- # }
4370
- #
4371
3735
  # @!attribute [rw] component_version_arn
4372
3736
  # The component version Amazon Resource Name (ARN) whose versions you
4373
3737
  # want to list.
@@ -4417,28 +3781,12 @@ module Aws::Imagebuilder
4417
3781
  include Aws::Structure
4418
3782
  end
4419
3783
 
4420
- # @note When making an API call, you may pass ListComponentsRequest
4421
- # data as a hash:
4422
- #
4423
- # {
4424
- # owner: "Self", # accepts Self, Shared, Amazon
4425
- # filters: [
4426
- # {
4427
- # name: "FilterName",
4428
- # values: ["FilterValue"],
4429
- # },
4430
- # ],
4431
- # by_name: false,
4432
- # max_results: 1,
4433
- # next_token: "PaginationToken",
4434
- # }
4435
- #
4436
3784
  # @!attribute [rw] owner
4437
- # The owner defines which components you want to list. By default,
4438
- # this request will only show components owned by your account. You
4439
- # can use this field to specify if you want to view components owned
4440
- # by yourself, by Amazon, or those components that have been shared
4441
- # with you by other customers.
3785
+ # Filters results based on the type of owner for the component. By
3786
+ # default, this request returns a list of components that your account
3787
+ # owns. To see results for other types of owners, you can specify
3788
+ # components that Amazon manages, third party components, or
3789
+ # components that other accounts have shared with you.
4442
3790
  # @return [String]
4443
3791
  #
4444
3792
  # @!attribute [rw] filters
@@ -4458,7 +3806,7 @@ module Aws::Imagebuilder
4458
3806
  # @return [Array<Types::Filter>]
4459
3807
  #
4460
3808
  # @!attribute [rw] by_name
4461
- # Returns the list of component build versions for the specified name.
3809
+ # Returns the list of components for the specified name.
4462
3810
  # @return [Boolean]
4463
3811
  #
4464
3812
  # @!attribute [rw] max_results
@@ -4513,21 +3861,6 @@ module Aws::Imagebuilder
4513
3861
  include Aws::Structure
4514
3862
  end
4515
3863
 
4516
- # @note When making an API call, you may pass ListContainerRecipesRequest
4517
- # data as a hash:
4518
- #
4519
- # {
4520
- # owner: "Self", # accepts Self, Shared, Amazon
4521
- # filters: [
4522
- # {
4523
- # name: "FilterName",
4524
- # values: ["FilterValue"],
4525
- # },
4526
- # ],
4527
- # max_results: 1,
4528
- # next_token: "NonEmptyString",
4529
- # }
4530
- #
4531
3864
  # @!attribute [rw] owner
4532
3865
  # Returns container recipes belonging to the specified owner, that
4533
3866
  # have been shared with you. You can omit this field to return
@@ -4592,20 +3925,6 @@ module Aws::Imagebuilder
4592
3925
  include Aws::Structure
4593
3926
  end
4594
3927
 
4595
- # @note When making an API call, you may pass ListDistributionConfigurationsRequest
4596
- # data as a hash:
4597
- #
4598
- # {
4599
- # filters: [
4600
- # {
4601
- # name: "FilterName",
4602
- # values: ["FilterValue"],
4603
- # },
4604
- # ],
4605
- # max_results: 1,
4606
- # next_token: "PaginationToken",
4607
- # }
4608
- #
4609
3928
  # @!attribute [rw] filters
4610
3929
  # You can filter on `name` to streamline results.
4611
3930
  # @return [Array<Types::Filter>]
@@ -4654,21 +3973,6 @@ module Aws::Imagebuilder
4654
3973
  include Aws::Structure
4655
3974
  end
4656
3975
 
4657
- # @note When making an API call, you may pass ListImageBuildVersionsRequest
4658
- # data as a hash:
4659
- #
4660
- # {
4661
- # image_version_arn: "ImageVersionArn", # required
4662
- # filters: [
4663
- # {
4664
- # name: "FilterName",
4665
- # values: ["FilterValue"],
4666
- # },
4667
- # ],
4668
- # max_results: 1,
4669
- # next_token: "PaginationToken",
4670
- # }
4671
- #
4672
3976
  # @!attribute [rw] image_version_arn
4673
3977
  # The Amazon Resource Name (ARN) of the image whose build versions you
4674
3978
  # want to retrieve.
@@ -4733,15 +4037,6 @@ module Aws::Imagebuilder
4733
4037
  include Aws::Structure
4734
4038
  end
4735
4039
 
4736
- # @note When making an API call, you may pass ListImagePackagesRequest
4737
- # data as a hash:
4738
- #
4739
- # {
4740
- # image_build_version_arn: "ImageBuildVersionArn", # required
4741
- # max_results: 1,
4742
- # next_token: "PaginationToken",
4743
- # }
4744
- #
4745
4040
  # @!attribute [rw] image_build_version_arn
4746
4041
  # Filter results for the ListImagePackages request by the Image Build
4747
4042
  # Version ARN
@@ -4790,21 +4085,6 @@ module Aws::Imagebuilder
4790
4085
  include Aws::Structure
4791
4086
  end
4792
4087
 
4793
- # @note When making an API call, you may pass ListImagePipelineImagesRequest
4794
- # data as a hash:
4795
- #
4796
- # {
4797
- # image_pipeline_arn: "ImagePipelineArn", # required
4798
- # filters: [
4799
- # {
4800
- # name: "FilterName",
4801
- # values: ["FilterValue"],
4802
- # },
4803
- # ],
4804
- # max_results: 1,
4805
- # next_token: "PaginationToken",
4806
- # }
4807
- #
4808
4088
  # @!attribute [rw] image_pipeline_arn
4809
4089
  # The Amazon Resource Name (ARN) of the image pipeline whose images
4810
4090
  # you want to view.
@@ -4863,20 +4143,6 @@ module Aws::Imagebuilder
4863
4143
  include Aws::Structure
4864
4144
  end
4865
4145
 
4866
- # @note When making an API call, you may pass ListImagePipelinesRequest
4867
- # data as a hash:
4868
- #
4869
- # {
4870
- # filters: [
4871
- # {
4872
- # name: "FilterName",
4873
- # values: ["FilterValue"],
4874
- # },
4875
- # ],
4876
- # max_results: 1,
4877
- # next_token: "PaginationToken",
4878
- # }
4879
- #
4880
4146
  # @!attribute [rw] filters
4881
4147
  # Use the following filters to streamline results:
4882
4148
  #
@@ -4937,21 +4203,6 @@ module Aws::Imagebuilder
4937
4203
  include Aws::Structure
4938
4204
  end
4939
4205
 
4940
- # @note When making an API call, you may pass ListImageRecipesRequest
4941
- # data as a hash:
4942
- #
4943
- # {
4944
- # owner: "Self", # accepts Self, Shared, Amazon
4945
- # filters: [
4946
- # {
4947
- # name: "FilterName",
4948
- # values: ["FilterValue"],
4949
- # },
4950
- # ],
4951
- # max_results: 1,
4952
- # next_token: "PaginationToken",
4953
- # }
4954
- #
4955
4206
  # @!attribute [rw] owner
4956
4207
  # The owner defines which image recipes you want to list. By default,
4957
4208
  # this request will only show image recipes owned by your account. You
@@ -5015,23 +4266,6 @@ module Aws::Imagebuilder
5015
4266
  include Aws::Structure
5016
4267
  end
5017
4268
 
5018
- # @note When making an API call, you may pass ListImagesRequest
5019
- # data as a hash:
5020
- #
5021
- # {
5022
- # owner: "Self", # accepts Self, Shared, Amazon
5023
- # filters: [
5024
- # {
5025
- # name: "FilterName",
5026
- # values: ["FilterValue"],
5027
- # },
5028
- # ],
5029
- # by_name: false,
5030
- # max_results: 1,
5031
- # next_token: "PaginationToken",
5032
- # include_deprecated: false,
5033
- # }
5034
- #
5035
4269
  # @!attribute [rw] owner
5036
4270
  # The owner defines which images you want to list. By default, this
5037
4271
  # request will only show images owned by your account. You can use
@@ -5121,20 +4355,6 @@ module Aws::Imagebuilder
5121
4355
  include Aws::Structure
5122
4356
  end
5123
4357
 
5124
- # @note When making an API call, you may pass ListInfrastructureConfigurationsRequest
5125
- # data as a hash:
5126
- #
5127
- # {
5128
- # filters: [
5129
- # {
5130
- # name: "FilterName",
5131
- # values: ["FilterValue"],
5132
- # },
5133
- # ],
5134
- # max_results: 1,
5135
- # next_token: "PaginationToken",
5136
- # }
5137
- #
5138
4358
  # @!attribute [rw] filters
5139
4359
  # You can filter on `name` to streamline results.
5140
4360
  # @return [Array<Types::Filter>]
@@ -5183,13 +4403,6 @@ module Aws::Imagebuilder
5183
4403
  include Aws::Structure
5184
4404
  end
5185
4405
 
5186
- # @note When making an API call, you may pass ListTagsForResourceRequest
5187
- # data as a hash:
5188
- #
5189
- # {
5190
- # resource_arn: "ImageBuilderArn", # required
5191
- # }
5192
- #
5193
4406
  # @!attribute [rw] resource_arn
5194
4407
  # The Amazon Resource Name (ARN) of the resource whose tags you want
5195
4408
  # to retrieve.
@@ -5217,16 +4430,6 @@ module Aws::Imagebuilder
5217
4430
 
5218
4431
  # Logging configuration defines where Image Builder uploads your logs.
5219
4432
  #
5220
- # @note When making an API call, you may pass Logging
5221
- # data as a hash:
5222
- #
5223
- # {
5224
- # s3_logs: {
5225
- # s3_bucket_name: "NonEmptyString",
5226
- # s3_key_prefix: "NonEmptyString",
5227
- # },
5228
- # }
5229
- #
5230
4433
  # @!attribute [rw] s3_logs
5231
4434
  # The Amazon S3 logging configuration.
5232
4435
  # @return [Types::S3Logs]
@@ -5259,14 +4462,6 @@ module Aws::Imagebuilder
5259
4462
  include Aws::Structure
5260
4463
  end
5261
4464
 
5262
- # @note When making an API call, you may pass PutComponentPolicyRequest
5263
- # data as a hash:
5264
- #
5265
- # {
5266
- # component_arn: "ComponentBuildVersionArn", # required
5267
- # policy: "ResourcePolicyDocument", # required
5268
- # }
5269
- #
5270
4465
  # @!attribute [rw] component_arn
5271
4466
  # The Amazon Resource Name (ARN) of the component that this policy
5272
4467
  # should be applied to.
@@ -5303,14 +4498,6 @@ module Aws::Imagebuilder
5303
4498
  include Aws::Structure
5304
4499
  end
5305
4500
 
5306
- # @note When making an API call, you may pass PutContainerRecipePolicyRequest
5307
- # data as a hash:
5308
- #
5309
- # {
5310
- # container_recipe_arn: "ContainerRecipeArn", # required
5311
- # policy: "ResourcePolicyDocument", # required
5312
- # }
5313
- #
5314
4501
  # @!attribute [rw] container_recipe_arn
5315
4502
  # The Amazon Resource Name (ARN) of the container recipe that this
5316
4503
  # policy should be applied to.
@@ -5347,14 +4534,6 @@ module Aws::Imagebuilder
5347
4534
  include Aws::Structure
5348
4535
  end
5349
4536
 
5350
- # @note When making an API call, you may pass PutImagePolicyRequest
5351
- # data as a hash:
5352
- #
5353
- # {
5354
- # image_arn: "ImageBuildVersionArn", # required
5355
- # policy: "ResourcePolicyDocument", # required
5356
- # }
5357
- #
5358
4537
  # @!attribute [rw] image_arn
5359
4538
  # The Amazon Resource Name (ARN) of the image that this policy should
5360
4539
  # be applied to.
@@ -5391,14 +4570,6 @@ module Aws::Imagebuilder
5391
4570
  include Aws::Structure
5392
4571
  end
5393
4572
 
5394
- # @note When making an API call, you may pass PutImageRecipePolicyRequest
5395
- # data as a hash:
5396
- #
5397
- # {
5398
- # image_recipe_arn: "ImageRecipeArn", # required
5399
- # policy: "ResourcePolicyDocument", # required
5400
- # }
5401
- #
5402
4573
  # @!attribute [rw] image_recipe_arn
5403
4574
  # The Amazon Resource Name (ARN) of the image recipe that this policy
5404
4575
  # should be applied to.
@@ -5493,16 +4664,6 @@ module Aws::Imagebuilder
5493
4664
  # Properties that configure export from your build instance to a
5494
4665
  # compatible file format for your VM.
5495
4666
  #
5496
- # @note When making an API call, you may pass S3ExportConfiguration
5497
- # data as a hash:
5498
- #
5499
- # {
5500
- # role_name: "NonEmptyString", # required
5501
- # disk_image_format: "VMDK", # required, accepts VMDK, RAW, VHD
5502
- # s3_bucket: "NonEmptyString", # required
5503
- # s3_prefix: "NonEmptyString",
5504
- # }
5505
- #
5506
4667
  # @!attribute [rw] role_name
5507
4668
  # The name of the role that grants VM Import/Export permission to
5508
4669
  # export images to your S3 bucket.
@@ -5543,14 +4704,6 @@ module Aws::Imagebuilder
5543
4704
 
5544
4705
  # Amazon S3 logging configuration.
5545
4706
  #
5546
- # @note When making an API call, you may pass S3Logs
5547
- # data as a hash:
5548
- #
5549
- # {
5550
- # s3_bucket_name: "NonEmptyString",
5551
- # s3_key_prefix: "NonEmptyString",
5552
- # }
5553
- #
5554
4707
  # @!attribute [rw] s3_bucket_name
5555
4708
  # The S3 bucket in which to store the logs.
5556
4709
  # @return [String]
@@ -5571,15 +4724,6 @@ module Aws::Imagebuilder
5571
4724
  # A schedule configures how often and when a pipeline will automatically
5572
4725
  # create a new image.
5573
4726
  #
5574
- # @note When making an API call, you may pass Schedule
5575
- # data as a hash:
5576
- #
5577
- # {
5578
- # schedule_expression: "NonEmptyString",
5579
- # timezone: "Timezone",
5580
- # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
5581
- # }
5582
- #
5583
4727
  # @!attribute [rw] schedule_expression
5584
4728
  # The cron expression determines how often EC2 Image Builder evaluates
5585
4729
  # your `pipelineExecutionStartCondition`.
@@ -5676,14 +4820,6 @@ module Aws::Imagebuilder
5676
4820
  include Aws::Structure
5677
4821
  end
5678
4822
 
5679
- # @note When making an API call, you may pass StartImagePipelineExecutionRequest
5680
- # data as a hash:
5681
- #
5682
- # {
5683
- # image_pipeline_arn: "ImagePipelineArn", # required
5684
- # client_token: "ClientToken", # required
5685
- # }
5686
- #
5687
4823
  # @!attribute [rw] image_pipeline_arn
5688
4824
  # The Amazon Resource Name (ARN) of the image pipeline that you want
5689
4825
  # to manually invoke.
@@ -5731,13 +4867,6 @@ module Aws::Imagebuilder
5731
4867
  # Contains settings for the Systems Manager agent on your build
5732
4868
  # instance.
5733
4869
  #
5734
- # @note When making an API call, you may pass SystemsManagerAgent
5735
- # data as a hash:
5736
- #
5737
- # {
5738
- # uninstall_after_build: false,
5739
- # }
5740
- #
5741
4870
  # @!attribute [rw] uninstall_after_build
5742
4871
  # Controls whether the Systems Manager agent is removed from your
5743
4872
  # final build image, prior to creating the new AMI. If this is set to
@@ -5754,16 +4883,6 @@ module Aws::Imagebuilder
5754
4883
  include Aws::Structure
5755
4884
  end
5756
4885
 
5757
- # @note When making an API call, you may pass TagResourceRequest
5758
- # data as a hash:
5759
- #
5760
- # {
5761
- # resource_arn: "ImageBuilderArn", # required
5762
- # tags: { # required
5763
- # "TagKey" => "TagValue",
5764
- # },
5765
- # }
5766
- #
5767
4886
  # @!attribute [rw] resource_arn
5768
4887
  # The Amazon Resource Name (ARN) of the resource that you want to tag.
5769
4888
  # @return [String]
@@ -5787,14 +4906,6 @@ module Aws::Imagebuilder
5787
4906
 
5788
4907
  # The container repository where the output container image is stored.
5789
4908
  #
5790
- # @note When making an API call, you may pass TargetContainerRepository
5791
- # data as a hash:
5792
- #
5793
- # {
5794
- # service: "ECR", # required, accepts ECR
5795
- # repository_name: "NonEmptyString", # required
5796
- # }
5797
- #
5798
4909
  # @!attribute [rw] service
5799
4910
  # Specifies the service in which this image was registered.
5800
4911
  # @return [String]
@@ -5813,14 +4924,6 @@ module Aws::Imagebuilder
5813
4924
  include Aws::Structure
5814
4925
  end
5815
4926
 
5816
- # @note When making an API call, you may pass UntagResourceRequest
5817
- # data as a hash:
5818
- #
5819
- # {
5820
- # resource_arn: "ImageBuilderArn", # required
5821
- # tag_keys: ["TagKey"], # required
5822
- # }
5823
- #
5824
4927
  # @!attribute [rw] resource_arn
5825
4928
  # The Amazon Resource Name (ARN) of the resource that you want to
5826
4929
  # untag.
@@ -5843,72 +4946,6 @@ module Aws::Imagebuilder
5843
4946
  #
5844
4947
  class UntagResourceResponse < Aws::EmptyStructure; end
5845
4948
 
5846
- # @note When making an API call, you may pass UpdateDistributionConfigurationRequest
5847
- # data as a hash:
5848
- #
5849
- # {
5850
- # distribution_configuration_arn: "DistributionConfigurationArn", # required
5851
- # description: "NonEmptyString",
5852
- # distributions: [ # required
5853
- # {
5854
- # region: "NonEmptyString", # required
5855
- # ami_distribution_configuration: {
5856
- # name: "AmiNameString",
5857
- # description: "NonEmptyString",
5858
- # target_account_ids: ["AccountId"],
5859
- # ami_tags: {
5860
- # "TagKey" => "TagValue",
5861
- # },
5862
- # kms_key_id: "NonEmptyString",
5863
- # launch_permission: {
5864
- # user_ids: ["AccountId"],
5865
- # user_groups: ["NonEmptyString"],
5866
- # organization_arns: ["OrganizationArn"],
5867
- # organizational_unit_arns: ["OrganizationalUnitArn"],
5868
- # },
5869
- # },
5870
- # container_distribution_configuration: {
5871
- # description: "NonEmptyString",
5872
- # container_tags: ["NonEmptyString"],
5873
- # target_repository: { # required
5874
- # service: "ECR", # required, accepts ECR
5875
- # repository_name: "NonEmptyString", # required
5876
- # },
5877
- # },
5878
- # license_configuration_arns: ["LicenseConfigurationArn"],
5879
- # launch_template_configurations: [
5880
- # {
5881
- # launch_template_id: "LaunchTemplateId", # required
5882
- # account_id: "AccountId",
5883
- # set_default_version: false,
5884
- # },
5885
- # ],
5886
- # s3_export_configuration: {
5887
- # role_name: "NonEmptyString", # required
5888
- # disk_image_format: "VMDK", # required, accepts VMDK, RAW, VHD
5889
- # s3_bucket: "NonEmptyString", # required
5890
- # s3_prefix: "NonEmptyString",
5891
- # },
5892
- # fast_launch_configurations: [
5893
- # {
5894
- # enabled: false, # required
5895
- # snapshot_configuration: {
5896
- # target_resource_count: 1,
5897
- # },
5898
- # max_parallel_launches: 1,
5899
- # launch_template: {
5900
- # launch_template_id: "LaunchTemplateId",
5901
- # launch_template_name: "NonEmptyString",
5902
- # launch_template_version: "NonEmptyString",
5903
- # },
5904
- # account_id: "AccountId",
5905
- # },
5906
- # ],
5907
- # },
5908
- # ],
5909
- # client_token: "ClientToken", # required
5910
- # }
5911
- #
5912
4949
  # @!attribute [rw] distribution_configuration_arn
5913
4950
  # The Amazon Resource Name (ARN) of the distribution configuration
5914
4951
  # that you want to update.
@@ -5963,30 +5000,6 @@ module Aws::Imagebuilder
5963
5000
  include Aws::Structure
5964
5001
  end
5965
5002
 
5966
- # @note When making an API call, you may pass UpdateImagePipelineRequest
5967
- # data as a hash:
5968
- #
5969
- # {
5970
- # image_pipeline_arn: "ImagePipelineArn", # required
5971
- # description: "NonEmptyString",
5972
- # image_recipe_arn: "ImageRecipeArn",
5973
- # container_recipe_arn: "ContainerRecipeArn",
5974
- # infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
5975
- # distribution_configuration_arn: "DistributionConfigurationArn",
5976
- # image_tests_configuration: {
5977
- # image_tests_enabled: false,
5978
- # timeout_minutes: 1,
5979
- # },
5980
- # enhanced_image_metadata_enabled: false,
5981
- # schedule: {
5982
- # schedule_expression: "NonEmptyString",
5983
- # timezone: "Timezone",
5984
- # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
5985
- # },
5986
- # status: "DISABLED", # accepts DISABLED, ENABLED
5987
- # client_token: "ClientToken", # required
5988
- # }
5989
- #
5990
5003
  # @!attribute [rw] image_pipeline_arn
5991
5004
  # The Amazon Resource Name (ARN) of the image pipeline that you want
5992
5005
  # to update.
@@ -6083,35 +5096,6 @@ module Aws::Imagebuilder
6083
5096
  include Aws::Structure
6084
5097
  end
6085
5098
 
6086
- # @note When making an API call, you may pass UpdateInfrastructureConfigurationRequest
6087
- # data as a hash:
6088
- #
6089
- # {
6090
- # infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
6091
- # description: "NonEmptyString",
6092
- # instance_types: ["InstanceType"],
6093
- # instance_profile_name: "InstanceProfileNameType", # required
6094
- # security_group_ids: ["NonEmptyString"],
6095
- # subnet_id: "NonEmptyString",
6096
- # logging: {
6097
- # s3_logs: {
6098
- # s3_bucket_name: "NonEmptyString",
6099
- # s3_key_prefix: "NonEmptyString",
6100
- # },
6101
- # },
6102
- # key_pair: "NonEmptyString",
6103
- # terminate_instance_on_failure: false,
6104
- # sns_topic_arn: "SnsTopicArn",
6105
- # client_token: "ClientToken", # required
6106
- # resource_tags: {
6107
- # "TagKey" => "TagValue",
6108
- # },
6109
- # instance_metadata_options: {
6110
- # http_tokens: "HttpTokens",
6111
- # http_put_response_hop_limit: 1,
6112
- # },
6113
- # }
6114
- #
6115
5099
  # @!attribute [rw] infrastructure_configuration_arn
6116
5100
  # The Amazon Resource Name (ARN) of the infrastructure configuration
6117
5101
  # that you want to update.