aws-sdk-imagebuilder 1.22.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efce08172d9f3fc257e9ce4eed1dbcc7fe446a45cc36c46e562de2d7fa550e86
4
- data.tar.gz: 533271bb23f6e9a762001540ccd3fffb9ad9ce21446f53eb0bd3af2bfcefd1f5
3
+ metadata.gz: 7c4ae30f97016b6eb95d11ef6587db6d990e13d139fe55bdb10b384ce5239e42
4
+ data.tar.gz: 01ca872ae9ad095cd17643b2d1b26091507450a02c9d106c5b9b6134a98f1a91
5
5
  SHA512:
6
- metadata.gz: cd1ca976f638258402781aad39554a3c76914a21ab791c0e024d57da3ed19234c65579d6c71d24666193ed1f19ff24ecc474671a8029e1d7ac7551b585a46752
7
- data.tar.gz: ee4215723ee7922651bb0ab730b1e1059f127d9f937bb9b8791297add7e4fb70972a33c94b7f880ee3e15f79984930bf9062430c94496d66c8bd23af728796bd
6
+ metadata.gz: 2f238ea4aeacd0cfad34e289e37f9b963ace85c3b6f422319e5618f12d83e43e5c591cd39acceb6b8448b47331e6812e1497fd90e10521ecc897cb1d26a7ed64
7
+ data.tar.gz: 05404ced2266ea9e9b8c0c465d8b9e6b6c175a3c72d03b1afaf5fbd6a086be934eb8b46cfe9372c28e585dc769df00947a485956c01cc392372a59ec67c25fca
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2021-07-28)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.25.0 (2021-07-23)
10
+ ------------------
11
+
12
+ * Feature - Update to documentation to reapply missing change to SSM uninstall switch default value and improve description.
13
+
14
+ 1.24.0 (2021-07-19)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for reversal of default value for additional instance configuration SSM switch, plus improved descriptions for semantic versioning.
18
+
19
+ 1.23.0 (2021-07-06)
20
+ ------------------
21
+
22
+ * Feature - Adds support for specifying parameters to customize components for recipes. Expands configuration of the Amazon EC2 instances that are used for building and testing images, including the ability to specify commands to run on launch, and more control over installation and removal of the SSM agent.
23
+
4
24
  1.22.0 (2021-05-14)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.26.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-imagebuilder/customizations'
48
48
  # @!group service
49
49
  module Aws::Imagebuilder
50
50
 
51
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.26.0'
52
52
 
53
53
  end
@@ -376,8 +376,23 @@ module Aws::Imagebuilder
376
376
  #
377
377
  # @option params [required, String] :semantic_version
378
378
  # The semantic version of the component. This version follows the
379
- # semantic version syntax. For example, major.minor.patch. This could be
380
- # versioned like software (2.0.1) or like a date (2019.12.01).
379
+ # semantic version syntax.
380
+ #
381
+ # <note markdown="1"> The semantic version has four nodes:
382
+ # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
383
+ # assign values for the first three, and can filter on all of them.
384
+ #
385
+ # **Assignment:** For the first three nodes you can assign any positive
386
+ # integer value, including zero, with an upper limit of 2^30-1, or
387
+ # 1073741823 for each node. Image Builder automatically assigns the
388
+ # build number, and that is not open for updates.
389
+ #
390
+ # **Patterns:** You can use any numeric pattern that adheres to the
391
+ # assignment requirements for the nodes that you can assign. For
392
+ # example, you might choose a software version pattern, such as 1.0.0,
393
+ # or a date, such as 2021.01.01.
394
+ #
395
+ # </note>
381
396
  #
382
397
  # @option params [String] :description
383
398
  # The description of the component. Describes the contents of the
@@ -401,10 +416,10 @@ module Aws::Imagebuilder
401
416
  # `data` or `uri` can be used to specify the data within the component.
402
417
  #
403
418
  # @option params [String] :uri
404
- # The uri of the component. Must be an S3 URL and the requester must
405
- # have permission to access the S3 bucket. If you use S3, you can
406
- # specify component content up to your service quota. Either `data` or
407
- # `uri` can be used to specify the data within the component.
419
+ # The uri of the component. Must be an Amazon S3 URL and the requester
420
+ # must have permission to access the Amazon S3 bucket. If you use Amazon
421
+ # S3, you can specify component content up to your service quota. Either
422
+ # `data` or `uri` can be used to specify the data within the component.
408
423
  #
409
424
  # @option params [String] :kms_key_id
410
425
  # The ID of the KMS key that should be used to encrypt this component.
@@ -470,8 +485,24 @@ module Aws::Imagebuilder
470
485
  # The description of the container recipe.
471
486
  #
472
487
  # @option params [required, String] :semantic_version
473
- # The semantic version of the container recipe
474
- # (&lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;).
488
+ # The semantic version of the container recipe. This version follows the
489
+ # semantic version syntax.
490
+ #
491
+ # <note markdown="1"> The semantic version has four nodes:
492
+ # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
493
+ # assign values for the first three, and can filter on all of them.
494
+ #
495
+ # **Assignment:** For the first three nodes you can assign any positive
496
+ # integer value, including zero, with an upper limit of 2^30-1, or
497
+ # 1073741823 for each node. Image Builder automatically assigns the
498
+ # build number, and that is not open for updates.
499
+ #
500
+ # **Patterns:** You can use any numeric pattern that adheres to the
501
+ # assignment requirements for the nodes that you can assign. For
502
+ # example, you might choose a software version pattern, such as 1.0.0,
503
+ # or a date, such as 2021.01.01.
504
+ #
505
+ # </note>
475
506
  #
476
507
  # @option params [required, Array<Types::ComponentConfiguration>] :components
477
508
  # Components for build and test that are included in the container
@@ -486,7 +517,7 @@ module Aws::Imagebuilder
486
517
  # blob.
487
518
  #
488
519
  # @option params [String] :dockerfile_template_uri
489
- # The S3 URI for the Dockerfile that will be used to build your
520
+ # The Amazon S3 URI for the Dockerfile that will be used to build your
490
521
  # container image.
491
522
  #
492
523
  # @option params [String] :platform_override
@@ -533,6 +564,12 @@ module Aws::Imagebuilder
533
564
  # components: [ # required
534
565
  # {
535
566
  # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
567
+ # parameters: [
568
+ # {
569
+ # name: "ComponentParameterName", # required
570
+ # value: ["ComponentParameterValue"], # required
571
+ # },
572
+ # ],
536
573
  # },
537
574
  # ],
538
575
  # instance_configuration: {
@@ -859,7 +896,24 @@ module Aws::Imagebuilder
859
896
  # The description of the image recipe.
860
897
  #
861
898
  # @option params [required, String] :semantic_version
862
- # The semantic version of the image recipe.
899
+ # The semantic version of the image recipe. This version follows the
900
+ # semantic version syntax.
901
+ #
902
+ # <note markdown="1"> The semantic version has four nodes:
903
+ # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
904
+ # assign values for the first three, and can filter on all of them.
905
+ #
906
+ # **Assignment:** For the first three nodes you can assign any positive
907
+ # integer value, including zero, with an upper limit of 2^30-1, or
908
+ # 1073741823 for each node. Image Builder automatically assigns the
909
+ # build number, and that is not open for updates.
910
+ #
911
+ # **Patterns:** You can use any numeric pattern that adheres to the
912
+ # assignment requirements for the nodes that you can assign. For
913
+ # example, you might choose a software version pattern, such as 1.0.0,
914
+ # or a date, such as 2021.01.01.
915
+ #
916
+ # </note>
863
917
  #
864
918
  # @option params [required, Array<Types::ComponentConfiguration>] :components
865
919
  # The components of the image recipe.
@@ -881,7 +935,11 @@ module Aws::Imagebuilder
881
935
  # The tags of the image recipe.
882
936
  #
883
937
  # @option params [String] :working_directory
884
- # The working directory to be used during build and test workflows.
938
+ # The working directory used during build and test workflows.
939
+ #
940
+ # @option params [Types::AdditionalInstanceConfiguration] :additional_instance_configuration
941
+ # Specify additional settings and launch scripts for your build
942
+ # instances.
885
943
  #
886
944
  # @option params [required, String] :client_token
887
945
  # The idempotency token used to make this request idempotent.
@@ -904,6 +962,12 @@ module Aws::Imagebuilder
904
962
  # components: [ # required
905
963
  # {
906
964
  # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
965
+ # parameters: [
966
+ # {
967
+ # name: "ComponentParameterName", # required
968
+ # value: ["ComponentParameterValue"], # required
969
+ # },
970
+ # ],
907
971
  # },
908
972
  # ],
909
973
  # parent_image: "NonEmptyString", # required
@@ -927,6 +991,12 @@ module Aws::Imagebuilder
927
991
  # "TagKey" => "TagValue",
928
992
  # },
929
993
  # working_directory: "NonEmptyString",
994
+ # additional_instance_configuration: {
995
+ # systems_manager_agent: {
996
+ # uninstall_after_build: false,
997
+ # },
998
+ # user_data_override: "UserDataOverride",
999
+ # },
930
1000
  # client_token: "ClientToken", # required
931
1001
  # })
932
1002
  #
@@ -962,15 +1032,15 @@ module Aws::Imagebuilder
962
1032
  #
963
1033
  # @option params [required, String] :instance_profile_name
964
1034
  # The instance profile to associate with the instance used to customize
965
- # your EC2 AMI.
1035
+ # your Amazon EC2 AMI.
966
1036
  #
967
1037
  # @option params [Array<String>] :security_group_ids
968
1038
  # The security group IDs to associate with the instance used to
969
- # customize your EC2 AMI.
1039
+ # customize your Amazon EC2 AMI.
970
1040
  #
971
1041
  # @option params [String] :subnet_id
972
1042
  # The subnet ID in which to place the instance used to customize your
973
- # EC2 AMI.
1043
+ # Amazon EC2 AMI.
974
1044
  #
975
1045
  # @option params [Types::Logging] :logging
976
1046
  # The logging configuration of the infrastructure configuration.
@@ -1290,6 +1360,12 @@ module Aws::Imagebuilder
1290
1360
  # resp.component.platform #=> String, one of "Windows", "Linux"
1291
1361
  # resp.component.supported_os_versions #=> Array
1292
1362
  # resp.component.supported_os_versions[0] #=> String
1363
+ # resp.component.parameters #=> Array
1364
+ # resp.component.parameters[0].name #=> String
1365
+ # resp.component.parameters[0].type #=> String
1366
+ # resp.component.parameters[0].default_value #=> Array
1367
+ # resp.component.parameters[0].default_value[0] #=> String
1368
+ # resp.component.parameters[0].description #=> String
1293
1369
  # resp.component.owner #=> String
1294
1370
  # resp.component.data #=> String
1295
1371
  # resp.component.kms_key_id #=> String
@@ -1366,6 +1442,10 @@ module Aws::Imagebuilder
1366
1442
  # resp.container_recipe.version #=> String
1367
1443
  # resp.container_recipe.components #=> Array
1368
1444
  # resp.container_recipe.components[0].component_arn #=> String
1445
+ # resp.container_recipe.components[0].parameters #=> Array
1446
+ # resp.container_recipe.components[0].parameters[0].name #=> String
1447
+ # resp.container_recipe.components[0].parameters[0].value #=> Array
1448
+ # resp.container_recipe.components[0].parameters[0].value[0] #=> String
1369
1449
  # resp.container_recipe.instance_configuration.image #=> String
1370
1450
  # resp.container_recipe.instance_configuration.block_device_mappings #=> Array
1371
1451
  # resp.container_recipe.instance_configuration.block_device_mappings[0].device_name #=> String
@@ -1528,6 +1608,10 @@ module Aws::Imagebuilder
1528
1608
  # resp.image.image_recipe.version #=> String
1529
1609
  # resp.image.image_recipe.components #=> Array
1530
1610
  # resp.image.image_recipe.components[0].component_arn #=> String
1611
+ # resp.image.image_recipe.components[0].parameters #=> Array
1612
+ # resp.image.image_recipe.components[0].parameters[0].name #=> String
1613
+ # resp.image.image_recipe.components[0].parameters[0].value #=> Array
1614
+ # resp.image.image_recipe.components[0].parameters[0].value[0] #=> String
1531
1615
  # resp.image.image_recipe.parent_image #=> String
1532
1616
  # resp.image.image_recipe.block_device_mappings #=> Array
1533
1617
  # resp.image.image_recipe.block_device_mappings[0].device_name #=> String
@@ -1544,6 +1628,8 @@ module Aws::Imagebuilder
1544
1628
  # resp.image.image_recipe.tags #=> Hash
1545
1629
  # resp.image.image_recipe.tags["TagKey"] #=> String
1546
1630
  # resp.image.image_recipe.working_directory #=> String
1631
+ # resp.image.image_recipe.additional_instance_configuration.systems_manager_agent.uninstall_after_build #=> Boolean
1632
+ # resp.image.image_recipe.additional_instance_configuration.user_data_override #=> String
1547
1633
  # resp.image.container_recipe.arn #=> String
1548
1634
  # resp.image.container_recipe.container_type #=> String, one of "DOCKER"
1549
1635
  # resp.image.container_recipe.name #=> String
@@ -1553,6 +1639,10 @@ module Aws::Imagebuilder
1553
1639
  # resp.image.container_recipe.version #=> String
1554
1640
  # resp.image.container_recipe.components #=> Array
1555
1641
  # resp.image.container_recipe.components[0].component_arn #=> String
1642
+ # resp.image.container_recipe.components[0].parameters #=> Array
1643
+ # resp.image.container_recipe.components[0].parameters[0].name #=> String
1644
+ # resp.image.container_recipe.components[0].parameters[0].value #=> Array
1645
+ # resp.image.container_recipe.components[0].parameters[0].value[0] #=> String
1556
1646
  # resp.image.container_recipe.instance_configuration.image #=> String
1557
1647
  # resp.image.container_recipe.instance_configuration.block_device_mappings #=> Array
1558
1648
  # resp.image.container_recipe.instance_configuration.block_device_mappings[0].device_name #=> String
@@ -1767,6 +1857,10 @@ module Aws::Imagebuilder
1767
1857
  # resp.image_recipe.version #=> String
1768
1858
  # resp.image_recipe.components #=> Array
1769
1859
  # resp.image_recipe.components[0].component_arn #=> String
1860
+ # resp.image_recipe.components[0].parameters #=> Array
1861
+ # resp.image_recipe.components[0].parameters[0].name #=> String
1862
+ # resp.image_recipe.components[0].parameters[0].value #=> Array
1863
+ # resp.image_recipe.components[0].parameters[0].value[0] #=> String
1770
1864
  # resp.image_recipe.parent_image #=> String
1771
1865
  # resp.image_recipe.block_device_mappings #=> Array
1772
1866
  # resp.image_recipe.block_device_mappings[0].device_name #=> String
@@ -1783,6 +1877,8 @@ module Aws::Imagebuilder
1783
1877
  # resp.image_recipe.tags #=> Hash
1784
1878
  # resp.image_recipe.tags["TagKey"] #=> String
1785
1879
  # resp.image_recipe.working_directory #=> String
1880
+ # resp.image_recipe.additional_instance_configuration.systems_manager_agent.uninstall_after_build #=> Boolean
1881
+ # resp.image_recipe.additional_instance_configuration.user_data_override #=> String
1786
1882
  #
1787
1883
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageRecipe AWS API Documentation
1788
1884
  #
@@ -1881,8 +1977,22 @@ module Aws::Imagebuilder
1881
1977
  #
1882
1978
  # @option params [required, String] :semantic_version
1883
1979
  # The semantic version of the component. This version follows the
1884
- # semantic version syntax. For example, major.minor.patch. This could be
1885
- # versioned like software (2.0.1) or like a date (2019.12.01).
1980
+ # semantic version syntax.
1981
+ #
1982
+ # <note markdown="1"> The semantic version has four nodes:
1983
+ # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
1984
+ # assign values for the first three, and can filter on all of them.
1985
+ #
1986
+ # **Filtering:** When you retrieve or reference a resource with a
1987
+ # semantic version, you can use wildcards (x) to filter your results.
1988
+ # When you use a wildcard in any node, all nodes to the right of the
1989
+ # first wildcard must also be wildcards. For example, specifying
1990
+ # "1.2.x", or "1.x.x" works to filter list results, but neither
1991
+ # "1.x.2", nor "x.2.x" will work. You do not have to specify the
1992
+ # build - Image Builder automatically uses a wildcard for that, if
1993
+ # applicable.
1994
+ #
1995
+ # </note>
1886
1996
  #
1887
1997
  # @option params [String] :description
1888
1998
  # The description of the component. Describes the contents of the
@@ -1895,7 +2005,7 @@ module Aws::Imagebuilder
1895
2005
  #
1896
2006
  # @option params [required, String] :type
1897
2007
  # The type of the component denotes whether the component is used to
1898
- # build the image or only to test it.
2008
+ # build the image, or only to test it.
1899
2009
  #
1900
2010
  # @option params [required, String] :format
1901
2011
  # The format of the resource that you want to import as a component.
@@ -1908,10 +2018,10 @@ module Aws::Imagebuilder
1908
2018
  # `data` or `uri` can be used to specify the data within the component.
1909
2019
  #
1910
2020
  # @option params [String] :uri
1911
- # The uri of the component. Must be an S3 URL and the requester must
1912
- # have permission to access the S3 bucket. If you use S3, you can
1913
- # specify component content up to your service quota. Either `data` or
1914
- # `uri` can be used to specify the data within the component.
2021
+ # The uri of the component. Must be an Amazon S3 URL and the requester
2022
+ # must have permission to access the Amazon S3 bucket. If you use Amazon
2023
+ # S3, you can specify component content up to your service quota. Either
2024
+ # `data` or `uri` can be used to specify the data within the component.
1915
2025
  #
1916
2026
  # @option params [String] :kms_key_id
1917
2027
  # The ID of the KMS key that should be used to encrypt this component.
@@ -1968,6 +2078,21 @@ module Aws::Imagebuilder
1968
2078
  # Returns the list of component build versions for the specified
1969
2079
  # semantic version.
1970
2080
  #
2081
+ # <note markdown="1"> The semantic version has four nodes:
2082
+ # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
2083
+ # assign values for the first three, and can filter on all of them.
2084
+ #
2085
+ # **Filtering:** When you retrieve or reference a resource with a
2086
+ # semantic version, you can use wildcards (x) to filter your results.
2087
+ # When you use a wildcard in any node, all nodes to the right of the
2088
+ # first wildcard must also be wildcards. For example, specifying
2089
+ # "1.2.x", or "1.x.x" works to filter list results, but neither
2090
+ # "1.x.2", nor "x.2.x" will work. You do not have to specify the
2091
+ # build - Image Builder automatically uses a wildcard for that, if
2092
+ # applicable.
2093
+ #
2094
+ # </note>
2095
+ #
1971
2096
  # @option params [required, String] :component_version_arn
1972
2097
  # The component version Amazon Resource Name (ARN) whose versions you
1973
2098
  # want to list.
@@ -2026,6 +2151,21 @@ module Aws::Imagebuilder
2026
2151
  # Returns the list of component build versions for the specified
2027
2152
  # semantic version.
2028
2153
  #
2154
+ # <note markdown="1"> The semantic version has four nodes:
2155
+ # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
2156
+ # assign values for the first three, and can filter on all of them.
2157
+ #
2158
+ # **Filtering:** When you retrieve or reference a resource with a
2159
+ # semantic version, you can use wildcards (x) to filter your results.
2160
+ # When you use a wildcard in any node, all nodes to the right of the
2161
+ # first wildcard must also be wildcards. For example, specifying
2162
+ # "1.2.x", or "1.x.x" works to filter list results, but neither
2163
+ # "1.x.2", nor "x.2.x" will work. You do not have to specify the
2164
+ # build - Image Builder automatically uses a wildcard for that, if
2165
+ # applicable.
2166
+ #
2167
+ # </note>
2168
+ #
2029
2169
  # @option params [String] :owner
2030
2170
  # The owner defines which components you want to list. By default, this
2031
2171
  # request will only show components owned by your account. You can use
@@ -2037,8 +2177,7 @@ module Aws::Imagebuilder
2037
2177
  # The filters.
2038
2178
  #
2039
2179
  # @option params [Boolean] :by_name
2040
- # Returns the list of component build versions for the specified
2041
- # semantic version.
2180
+ # Returns the list of component build versions for the specified name.
2042
2181
  #
2043
2182
  # @option params [Integer] :max_results
2044
2183
  # The maximum items to return in a request.
@@ -2299,7 +2438,7 @@ module Aws::Imagebuilder
2299
2438
  end
2300
2439
 
2301
2440
  # List the Packages that are associated with an Image Build Version, as
2302
- # determined by AWS Systems Manager Inventory at build time.
2441
+ # determined by Amazon EC2 Systems Manager Inventory at build time.
2303
2442
  #
2304
2443
  # @option params [required, String] :image_build_version_arn
2305
2444
  # Filter results for the ListImagePackages request by the Image Build
@@ -3185,14 +3324,15 @@ module Aws::Imagebuilder
3185
3324
  #
3186
3325
  # @option params [required, String] :instance_profile_name
3187
3326
  # The instance profile to associate with the instance used to customize
3188
- # your EC2 AMI.
3327
+ # your Amazon EC2 AMI.
3189
3328
  #
3190
3329
  # @option params [Array<String>] :security_group_ids
3191
3330
  # The security group IDs to associate with the instance used to
3192
- # customize your EC2 AMI.
3331
+ # customize your Amazon EC2 AMI.
3193
3332
  #
3194
3333
  # @option params [String] :subnet_id
3195
- # The subnet ID to place the instance used to customize your EC2 AMI in.
3334
+ # The subnet ID to place the instance used to customize your Amazon EC2
3335
+ # AMI in.
3196
3336
  #
3197
3337
  # @option params [Types::Logging] :logging
3198
3338
  # The logging configuration of the infrastructure configuration.
@@ -3277,7 +3417,7 @@ module Aws::Imagebuilder
3277
3417
  params: params,
3278
3418
  config: config)
3279
3419
  context[:gem_name] = 'aws-sdk-imagebuilder'
3280
- context[:gem_version] = '1.22.0'
3420
+ context[:gem_version] = '1.26.0'
3281
3421
  Seahorse::Client::Request.new(handlers, context)
3282
3422
  end
3283
3423
 
@@ -15,6 +15,7 @@ module Aws::Imagebuilder
15
15
 
16
16
  AccountId = Shapes::StringShape.new(name: 'AccountId')
17
17
  AccountList = Shapes::ListShape.new(name: 'AccountList')
18
+ AdditionalInstanceConfiguration = Shapes::StructureShape.new(name: 'AdditionalInstanceConfiguration')
18
19
  Ami = Shapes::StructureShape.new(name: 'Ami')
19
20
  AmiDistributionConfiguration = Shapes::StructureShape.new(name: 'AmiDistributionConfiguration')
20
21
  AmiList = Shapes::ListShape.new(name: 'AmiList')
@@ -32,6 +33,15 @@ module Aws::Imagebuilder
32
33
  ComponentConfigurationList = Shapes::ListShape.new(name: 'ComponentConfigurationList')
33
34
  ComponentData = Shapes::StringShape.new(name: 'ComponentData')
34
35
  ComponentFormat = Shapes::StringShape.new(name: 'ComponentFormat')
36
+ ComponentParameter = Shapes::StructureShape.new(name: 'ComponentParameter')
37
+ ComponentParameterDescription = Shapes::StringShape.new(name: 'ComponentParameterDescription')
38
+ ComponentParameterDetail = Shapes::StructureShape.new(name: 'ComponentParameterDetail')
39
+ ComponentParameterDetailList = Shapes::ListShape.new(name: 'ComponentParameterDetailList')
40
+ ComponentParameterList = Shapes::ListShape.new(name: 'ComponentParameterList')
41
+ ComponentParameterName = Shapes::StringShape.new(name: 'ComponentParameterName')
42
+ ComponentParameterType = Shapes::StringShape.new(name: 'ComponentParameterType')
43
+ ComponentParameterValue = Shapes::StringShape.new(name: 'ComponentParameterValue')
44
+ ComponentParameterValueList = Shapes::ListShape.new(name: 'ComponentParameterValueList')
35
45
  ComponentSummary = Shapes::StructureShape.new(name: 'ComponentSummary')
36
46
  ComponentSummaryList = Shapes::ListShape.new(name: 'ComponentSummaryList')
37
47
  ComponentType = Shapes::StringShape.new(name: 'ComponentType')
@@ -231,6 +241,7 @@ module Aws::Imagebuilder
231
241
  StartImagePipelineExecutionRequest = Shapes::StructureShape.new(name: 'StartImagePipelineExecutionRequest')
232
242
  StartImagePipelineExecutionResponse = Shapes::StructureShape.new(name: 'StartImagePipelineExecutionResponse')
233
243
  StringList = Shapes::ListShape.new(name: 'StringList')
244
+ SystemsManagerAgent = Shapes::StructureShape.new(name: 'SystemsManagerAgent')
234
245
  TagKey = Shapes::StringShape.new(name: 'TagKey')
235
246
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
236
247
  TagMap = Shapes::MapShape.new(name: 'TagMap')
@@ -248,10 +259,15 @@ module Aws::Imagebuilder
248
259
  UpdateInfrastructureConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateInfrastructureConfigurationRequest')
249
260
  UpdateInfrastructureConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateInfrastructureConfigurationResponse')
250
261
  Uri = Shapes::StringShape.new(name: 'Uri')
262
+ UserDataOverride = Shapes::StringShape.new(name: 'UserDataOverride')
251
263
  VersionNumber = Shapes::StringShape.new(name: 'VersionNumber')
252
264
 
253
265
  AccountList.member = Shapes::ShapeRef.new(shape: AccountId)
254
266
 
267
+ AdditionalInstanceConfiguration.add_member(:systems_manager_agent, Shapes::ShapeRef.new(shape: SystemsManagerAgent, location_name: "systemsManagerAgent"))
268
+ AdditionalInstanceConfiguration.add_member(:user_data_override, Shapes::ShapeRef.new(shape: UserDataOverride, location_name: "userDataOverride"))
269
+ AdditionalInstanceConfiguration.struct_class = Types::AdditionalInstanceConfiguration
270
+
255
271
  Ami.add_member(:region, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "region"))
256
272
  Ami.add_member(:image, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "image"))
257
273
  Ami.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "name"))
@@ -293,6 +309,7 @@ module Aws::Imagebuilder
293
309
  Component.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
294
310
  Component.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
295
311
  Component.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
312
+ Component.add_member(:parameters, Shapes::ShapeRef.new(shape: ComponentParameterDetailList, location_name: "parameters"))
296
313
  Component.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
297
314
  Component.add_member(:data, Shapes::ShapeRef.new(shape: ComponentData, location_name: "data"))
298
315
  Component.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "kmsKeyId"))
@@ -302,10 +319,27 @@ module Aws::Imagebuilder
302
319
  Component.struct_class = Types::Component
303
320
 
304
321
  ComponentConfiguration.add_member(:component_arn, Shapes::ShapeRef.new(shape: ComponentVersionArnOrBuildVersionArn, required: true, location_name: "componentArn"))
322
+ ComponentConfiguration.add_member(:parameters, Shapes::ShapeRef.new(shape: ComponentParameterList, location_name: "parameters"))
305
323
  ComponentConfiguration.struct_class = Types::ComponentConfiguration
306
324
 
307
325
  ComponentConfigurationList.member = Shapes::ShapeRef.new(shape: ComponentConfiguration)
308
326
 
327
+ ComponentParameter.add_member(:name, Shapes::ShapeRef.new(shape: ComponentParameterName, required: true, location_name: "name"))
328
+ ComponentParameter.add_member(:value, Shapes::ShapeRef.new(shape: ComponentParameterValueList, required: true, location_name: "value"))
329
+ ComponentParameter.struct_class = Types::ComponentParameter
330
+
331
+ ComponentParameterDetail.add_member(:name, Shapes::ShapeRef.new(shape: ComponentParameterName, required: true, location_name: "name"))
332
+ ComponentParameterDetail.add_member(:type, Shapes::ShapeRef.new(shape: ComponentParameterType, required: true, location_name: "type"))
333
+ ComponentParameterDetail.add_member(:default_value, Shapes::ShapeRef.new(shape: ComponentParameterValueList, location_name: "defaultValue"))
334
+ ComponentParameterDetail.add_member(:description, Shapes::ShapeRef.new(shape: ComponentParameterDescription, location_name: "description"))
335
+ ComponentParameterDetail.struct_class = Types::ComponentParameterDetail
336
+
337
+ ComponentParameterDetailList.member = Shapes::ShapeRef.new(shape: ComponentParameterDetail)
338
+
339
+ ComponentParameterList.member = Shapes::ShapeRef.new(shape: ComponentParameter)
340
+
341
+ ComponentParameterValueList.member = Shapes::ShapeRef.new(shape: ComponentParameterValue)
342
+
309
343
  ComponentSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
310
344
  ComponentSummary.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
311
345
  ComponentSummary.add_member(:version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "version"))
@@ -456,6 +490,7 @@ module Aws::Imagebuilder
456
490
  CreateImageRecipeRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: InstanceBlockDeviceMappings, location_name: "blockDeviceMappings"))
457
491
  CreateImageRecipeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
458
492
  CreateImageRecipeRequest.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
493
+ CreateImageRecipeRequest.add_member(:additional_instance_configuration, Shapes::ShapeRef.new(shape: AdditionalInstanceConfiguration, location_name: "additionalInstanceConfiguration"))
459
494
  CreateImageRecipeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
460
495
  CreateImageRecipeRequest.struct_class = Types::CreateImageRecipeRequest
461
496
 
@@ -738,6 +773,7 @@ module Aws::Imagebuilder
738
773
  ImageRecipe.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
739
774
  ImageRecipe.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
740
775
  ImageRecipe.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
776
+ ImageRecipe.add_member(:additional_instance_configuration, Shapes::ShapeRef.new(shape: AdditionalInstanceConfiguration, location_name: "additionalInstanceConfiguration"))
741
777
  ImageRecipe.struct_class = Types::ImageRecipe
742
778
 
743
779
  ImageRecipeSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
@@ -1094,6 +1130,9 @@ module Aws::Imagebuilder
1094
1130
 
1095
1131
  StringList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
1096
1132
 
1133
+ SystemsManagerAgent.add_member(:uninstall_after_build, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "uninstallAfterBuild"))
1134
+ SystemsManagerAgent.struct_class = Types::SystemsManagerAgent
1135
+
1097
1136
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
1098
1137
 
1099
1138
  TagMap.key = Shapes::ShapeRef.new(shape: TagKey)