aws-sdk-imagebuilder 1.21.0 → 1.25.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: afc56c1088a8e968723a1010a8210801e64f53bf514a6ea440c2a66178f61a36
4
- data.tar.gz: 2057bf07fb5f68b5c92cee2c31a96ff84eba2e55139b5fcd6801c43873298de8
3
+ metadata.gz: 1bbdab14db8a934ea2649b963f16a6ff91254280feaf00533a1f50c0717450ec
4
+ data.tar.gz: 41659df5a16d4c5b29bf95b6879aae395174235be38cac6aa4efe2fbaf971804
5
5
  SHA512:
6
- metadata.gz: 9862c403833ee476cbd3632bff82951afe255cf21f72cac5a974a8a025cc60a52309a97377b8bb10f365a0a97d2d2ebae830d002834ca9ab01fc5b2cb1ae8d99
7
- data.tar.gz: ee71e42866fb77f2a5eae753e6918b2a3dda85cc9de2e3942238d43461e4ac2a8af61e297d8641cb5d5afc37cc3a73825b598e4680e12520692b9c77e5432a19
6
+ metadata.gz: be591e4627c51741eb40700a165228afa40b9bc66618dc714edca2845bfb7f66d6387ee84bca13d53ffa160d80868d1fdba78f5c4a1e42807bde8b35d8029afd
7
+ data.tar.gz: ecc8befb019326129f9d09dac6fb5f6682c004edb27662132b90544c8c8d014410dffe5abeb16f3a31cf799b7e317e72470e9bf8c99327dc1886602b7667f72d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2021-07-23)
5
+ ------------------
6
+
7
+ * Feature - Update to documentation to reapply missing change to SSM uninstall switch default value and improve description.
8
+
9
+ 1.24.0 (2021-07-19)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for reversal of default value for additional instance configuration SSM switch, plus improved descriptions for semantic versioning.
13
+
14
+ 1.23.0 (2021-07-06)
15
+ ------------------
16
+
17
+ * 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.
18
+
19
+ 1.22.0 (2021-05-14)
20
+ ------------------
21
+
22
+ * Feature - Text-only updates for bundled documentation feedback tickets - spring 2021.
23
+
4
24
  1.21.0 (2021-04-02)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.25.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.21.0'
51
+ GEM_VERSION = '1.25.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: {
@@ -675,7 +712,8 @@ module Aws::Imagebuilder
675
712
 
676
713
  # Creates a new image. This request will create a new image along with
677
714
  # all of the configured output resources defined in the distribution
678
- # configuration.
715
+ # configuration. You must specify exactly one recipe for your image,
716
+ # using either a ContainerRecipeArn or an ImageRecipeArn.
679
717
  #
680
718
  # @option params [String] :image_recipe_arn
681
719
  # The Amazon Resource Name (ARN) of the image recipe that defines how
@@ -858,7 +896,24 @@ module Aws::Imagebuilder
858
896
  # The description of the image recipe.
859
897
  #
860
898
  # @option params [required, String] :semantic_version
861
- # 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>
862
917
  #
863
918
  # @option params [required, Array<Types::ComponentConfiguration>] :components
864
919
  # The components of the image recipe.
@@ -867,7 +922,7 @@ module Aws::Imagebuilder
867
922
  # The parent image of the image recipe. The value of the string can be
868
923
  # the ARN of the parent image or an AMI ID. The format for the ARN
869
924
  # follows this example:
870
- # `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/xxxx.x.x`.
925
+ # `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/x.x.x`.
871
926
  # You can provide the specific version that you want to use, or you can
872
927
  # use a wildcard in all of the fields. If you enter an AMI ID for the
873
928
  # string value, you must have access to the AMI, and the AMI must be in
@@ -880,7 +935,11 @@ module Aws::Imagebuilder
880
935
  # The tags of the image recipe.
881
936
  #
882
937
  # @option params [String] :working_directory
883
- # 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.
884
943
  #
885
944
  # @option params [required, String] :client_token
886
945
  # The idempotency token used to make this request idempotent.
@@ -903,6 +962,12 @@ module Aws::Imagebuilder
903
962
  # components: [ # required
904
963
  # {
905
964
  # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
965
+ # parameters: [
966
+ # {
967
+ # name: "ComponentParameterName", # required
968
+ # value: ["ComponentParameterValue"], # required
969
+ # },
970
+ # ],
906
971
  # },
907
972
  # ],
908
973
  # parent_image: "NonEmptyString", # required
@@ -926,6 +991,12 @@ module Aws::Imagebuilder
926
991
  # "TagKey" => "TagValue",
927
992
  # },
928
993
  # working_directory: "NonEmptyString",
994
+ # additional_instance_configuration: {
995
+ # systems_manager_agent: {
996
+ # uninstall_after_build: false,
997
+ # },
998
+ # user_data_override: "UserDataOverride",
999
+ # },
929
1000
  # client_token: "ClientToken", # required
930
1001
  # })
931
1002
  #
@@ -961,15 +1032,15 @@ module Aws::Imagebuilder
961
1032
  #
962
1033
  # @option params [required, String] :instance_profile_name
963
1034
  # The instance profile to associate with the instance used to customize
964
- # your EC2 AMI.
1035
+ # your Amazon EC2 AMI.
965
1036
  #
966
1037
  # @option params [Array<String>] :security_group_ids
967
1038
  # The security group IDs to associate with the instance used to
968
- # customize your EC2 AMI.
1039
+ # customize your Amazon EC2 AMI.
969
1040
  #
970
1041
  # @option params [String] :subnet_id
971
1042
  # The subnet ID in which to place the instance used to customize your
972
- # EC2 AMI.
1043
+ # Amazon EC2 AMI.
973
1044
  #
974
1045
  # @option params [Types::Logging] :logging
975
1046
  # The logging configuration of the infrastructure configuration.
@@ -1289,6 +1360,12 @@ module Aws::Imagebuilder
1289
1360
  # resp.component.platform #=> String, one of "Windows", "Linux"
1290
1361
  # resp.component.supported_os_versions #=> Array
1291
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
1292
1369
  # resp.component.owner #=> String
1293
1370
  # resp.component.data #=> String
1294
1371
  # resp.component.kms_key_id #=> String
@@ -1365,6 +1442,10 @@ module Aws::Imagebuilder
1365
1442
  # resp.container_recipe.version #=> String
1366
1443
  # resp.container_recipe.components #=> Array
1367
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
1368
1449
  # resp.container_recipe.instance_configuration.image #=> String
1369
1450
  # resp.container_recipe.instance_configuration.block_device_mappings #=> Array
1370
1451
  # resp.container_recipe.instance_configuration.block_device_mappings[0].device_name #=> String
@@ -1527,6 +1608,10 @@ module Aws::Imagebuilder
1527
1608
  # resp.image.image_recipe.version #=> String
1528
1609
  # resp.image.image_recipe.components #=> Array
1529
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
1530
1615
  # resp.image.image_recipe.parent_image #=> String
1531
1616
  # resp.image.image_recipe.block_device_mappings #=> Array
1532
1617
  # resp.image.image_recipe.block_device_mappings[0].device_name #=> String
@@ -1543,6 +1628,8 @@ module Aws::Imagebuilder
1543
1628
  # resp.image.image_recipe.tags #=> Hash
1544
1629
  # resp.image.image_recipe.tags["TagKey"] #=> String
1545
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
1546
1633
  # resp.image.container_recipe.arn #=> String
1547
1634
  # resp.image.container_recipe.container_type #=> String, one of "DOCKER"
1548
1635
  # resp.image.container_recipe.name #=> String
@@ -1552,6 +1639,10 @@ module Aws::Imagebuilder
1552
1639
  # resp.image.container_recipe.version #=> String
1553
1640
  # resp.image.container_recipe.components #=> Array
1554
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
1555
1646
  # resp.image.container_recipe.instance_configuration.image #=> String
1556
1647
  # resp.image.container_recipe.instance_configuration.block_device_mappings #=> Array
1557
1648
  # resp.image.container_recipe.instance_configuration.block_device_mappings[0].device_name #=> String
@@ -1766,6 +1857,10 @@ module Aws::Imagebuilder
1766
1857
  # resp.image_recipe.version #=> String
1767
1858
  # resp.image_recipe.components #=> Array
1768
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
1769
1864
  # resp.image_recipe.parent_image #=> String
1770
1865
  # resp.image_recipe.block_device_mappings #=> Array
1771
1866
  # resp.image_recipe.block_device_mappings[0].device_name #=> String
@@ -1782,6 +1877,8 @@ module Aws::Imagebuilder
1782
1877
  # resp.image_recipe.tags #=> Hash
1783
1878
  # resp.image_recipe.tags["TagKey"] #=> String
1784
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
1785
1882
  #
1786
1883
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageRecipe AWS API Documentation
1787
1884
  #
@@ -1880,8 +1977,22 @@ module Aws::Imagebuilder
1880
1977
  #
1881
1978
  # @option params [required, String] :semantic_version
1882
1979
  # The semantic version of the component. This version follows the
1883
- # semantic version syntax. For example, major.minor.patch. This could be
1884
- # 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>
1885
1996
  #
1886
1997
  # @option params [String] :description
1887
1998
  # The description of the component. Describes the contents of the
@@ -1894,7 +2005,7 @@ module Aws::Imagebuilder
1894
2005
  #
1895
2006
  # @option params [required, String] :type
1896
2007
  # The type of the component denotes whether the component is used to
1897
- # build the image or only to test it.
2008
+ # build the image, or only to test it.
1898
2009
  #
1899
2010
  # @option params [required, String] :format
1900
2011
  # The format of the resource that you want to import as a component.
@@ -1907,10 +2018,10 @@ module Aws::Imagebuilder
1907
2018
  # `data` or `uri` can be used to specify the data within the component.
1908
2019
  #
1909
2020
  # @option params [String] :uri
1910
- # The uri of the component. Must be an S3 URL and the requester must
1911
- # have permission to access the S3 bucket. If you use S3, you can
1912
- # specify component content up to your service quota. Either `data` or
1913
- # `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.
1914
2025
  #
1915
2026
  # @option params [String] :kms_key_id
1916
2027
  # The ID of the KMS key that should be used to encrypt this component.
@@ -1967,6 +2078,21 @@ module Aws::Imagebuilder
1967
2078
  # Returns the list of component build versions for the specified
1968
2079
  # semantic version.
1969
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
+ #
1970
2096
  # @option params [required, String] :component_version_arn
1971
2097
  # The component version Amazon Resource Name (ARN) whose versions you
1972
2098
  # want to list.
@@ -2025,6 +2151,21 @@ module Aws::Imagebuilder
2025
2151
  # Returns the list of component build versions for the specified
2026
2152
  # semantic version.
2027
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
+ #
2028
2169
  # @option params [String] :owner
2029
2170
  # The owner defines which components you want to list. By default, this
2030
2171
  # request will only show components owned by your account. You can use
@@ -2036,8 +2177,7 @@ module Aws::Imagebuilder
2036
2177
  # The filters.
2037
2178
  #
2038
2179
  # @option params [Boolean] :by_name
2039
- # Returns the list of component build versions for the specified
2040
- # semantic version.
2180
+ # Returns the list of component build versions for the specified name.
2041
2181
  #
2042
2182
  # @option params [Integer] :max_results
2043
2183
  # The maximum items to return in a request.
@@ -2298,7 +2438,7 @@ module Aws::Imagebuilder
2298
2438
  end
2299
2439
 
2300
2440
  # List the Packages that are associated with an Image Build Version, as
2301
- # determined by AWS Systems Manager Inventory at build time.
2441
+ # determined by Amazon EC2 Systems Manager Inventory at build time.
2302
2442
  #
2303
2443
  # @option params [required, String] :image_build_version_arn
2304
2444
  # Filter results for the ListImagePackages request by the Image Build
@@ -3069,8 +3209,14 @@ module Aws::Imagebuilder
3069
3209
  req.send_request(options)
3070
3210
  end
3071
3211
 
3072
- # Updates a new image pipeline. Image pipelines enable you to automate
3073
- # the creation and distribution of images.
3212
+ # Updates an image pipeline. Image pipelines enable you to automate the
3213
+ # creation and distribution of images.
3214
+ #
3215
+ # <note markdown="1"> UpdateImagePipeline does not support selective updates for the
3216
+ # pipeline. You must specify all of the required properties in the
3217
+ # update request, not just the properties that have changed.
3218
+ #
3219
+ # </note>
3074
3220
  #
3075
3221
  # @option params [required, String] :image_pipeline_arn
3076
3222
  # The Amazon Resource Name (ARN) of the image pipeline that you want to
@@ -3178,14 +3324,15 @@ module Aws::Imagebuilder
3178
3324
  #
3179
3325
  # @option params [required, String] :instance_profile_name
3180
3326
  # The instance profile to associate with the instance used to customize
3181
- # your EC2 AMI.
3327
+ # your Amazon EC2 AMI.
3182
3328
  #
3183
3329
  # @option params [Array<String>] :security_group_ids
3184
3330
  # The security group IDs to associate with the instance used to
3185
- # customize your EC2 AMI.
3331
+ # customize your Amazon EC2 AMI.
3186
3332
  #
3187
3333
  # @option params [String] :subnet_id
3188
- # 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.
3189
3336
  #
3190
3337
  # @option params [Types::Logging] :logging
3191
3338
  # The logging configuration of the infrastructure configuration.
@@ -3270,7 +3417,7 @@ module Aws::Imagebuilder
3270
3417
  params: params,
3271
3418
  config: config)
3272
3419
  context[:gem_name] = 'aws-sdk-imagebuilder'
3273
- context[:gem_version] = '1.21.0'
3420
+ context[:gem_version] = '1.25.0'
3274
3421
  Seahorse::Client::Request.new(handlers, context)
3275
3422
  end
3276
3423