aws-sdk-imagebuilder 1.11.0 → 1.16.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: dc7748b42071c50117bbec58861e622d51182914c8cb390335a266450f5a042d
4
- data.tar.gz: 57bd3dfdca3c69d268a94ebbedbd7550dc72d08d742a8451366002265ae9673b
3
+ metadata.gz: 40bb1acbf6befa67e0d7225524760dba1fff56c3fb59f606d6f619300c8fb097
4
+ data.tar.gz: afdd23a7a840c95738ea81eb5637b9e5e117788c251853649c984492af38df73
5
5
  SHA512:
6
- metadata.gz: 026fbd3c85338cc67590745b7aff86abcf04b1dbc40268f3548458d71e5213520b457e894dc359ef69c96d78ddba784c18c3b2dc0d2621b92a08f24ebdc74c5a
7
- data.tar.gz: dfc9d9b39e4427ee5d4ad4d612b92f9e5b410d0705494c45ad093707908c3c7753bb2ce0ea163d6befa80906c2274b788e80e1e9d48ba54b068d6123151e946b
6
+ metadata.gz: d41a076fefadb8c7488c233ea5f37eb6b0801473b544bb6a782634abe073c4f267c5dffb3f685b07f15748c70168ff66330193ba23822f155b149aff5434c9ea
7
+ data.tar.gz: 402c9af5095c2f42b53a2385acfa9f232757c88db4b2613db65218260f81584e9f659bd08c4d24795fd9efe80dd40f691d96194974f96d62323facbabebb2c37
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-imagebuilder/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::Imagebuilder
49
50
 
50
- GEM_VERSION = '1.11.0'
51
+ GEM_VERSION = '1.16.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::Imagebuilder
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::Imagebuilder
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -480,16 +495,17 @@ module Aws::Imagebuilder
480
495
  # ami_distribution_configuration: {
481
496
  # name: "AmiNameString",
482
497
  # description: "NonEmptyString",
498
+ # target_account_ids: ["AccountId"],
483
499
  # ami_tags: {
484
500
  # "TagKey" => "TagValue",
485
501
  # },
486
502
  # kms_key_id: "NonEmptyString",
487
503
  # launch_permission: {
488
- # user_ids: ["NonEmptyString"],
504
+ # user_ids: ["AccountId"],
489
505
  # user_groups: ["NonEmptyString"],
490
506
  # },
491
507
  # },
492
- # license_configuration_arns: ["Arn"],
508
+ # license_configuration_arns: ["LicenseConfigurationArn"],
493
509
  # },
494
510
  # ],
495
511
  # tags: {
@@ -696,13 +712,11 @@ module Aws::Imagebuilder
696
712
  # The parent image of the image recipe. The value of the string can be
697
713
  # the ARN of the parent image or an AMI ID. The format for the ARN
698
714
  # follows this example:
699
- # `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/2019.x.x`.
700
- # The ARN ends with `/20xx.x.x`, which communicates to EC2 Image Builder
701
- # that you want to use the latest AMI created in 20xx (year). You can
702
- # provide the specific version that you want to use, or you can use a
703
- # wildcard in all of the fields. If you enter an AMI ID for the string
704
- # value, you must have access to the AMI, and the AMI must be in the
705
- # same Region in which you are using Image Builder.
715
+ # `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/xxxx.x.x`.
716
+ # You can provide the specific version that you want to use, or you can
717
+ # use a wildcard in all of the fields. If you enter an AMI ID for the
718
+ # string value, you must have access to the AMI, and the AMI must be in
719
+ # the same Region in which you are using Image Builder.
706
720
  #
707
721
  # @option params [Array<Types::InstanceBlockDeviceMapping>] :block_device_mappings
708
722
  # The block device mappings of the image recipe.
@@ -747,7 +761,7 @@ module Aws::Imagebuilder
747
761
  # kms_key_id: "NonEmptyString",
748
762
  # snapshot_id: "NonEmptyString",
749
763
  # volume_size: 1,
750
- # volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
764
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
751
765
  # },
752
766
  # virtual_name: "NonEmptyString",
753
767
  # no_device: "EmptyString",
@@ -1165,6 +1179,8 @@ module Aws::Imagebuilder
1165
1179
  # resp.distribution_configuration.distributions[0].region #=> String
1166
1180
  # resp.distribution_configuration.distributions[0].ami_distribution_configuration.name #=> String
1167
1181
  # resp.distribution_configuration.distributions[0].ami_distribution_configuration.description #=> String
1182
+ # resp.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids #=> Array
1183
+ # resp.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids[0] #=> String
1168
1184
  # resp.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags #=> Hash
1169
1185
  # resp.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags["TagKey"] #=> String
1170
1186
  # resp.distribution_configuration.distributions[0].ami_distribution_configuration.kms_key_id #=> String
@@ -1233,7 +1249,7 @@ module Aws::Imagebuilder
1233
1249
  # resp.image.image_recipe.block_device_mappings[0].ebs.kms_key_id #=> String
1234
1250
  # resp.image.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
1235
1251
  # resp.image.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
1236
- # resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
1252
+ # resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1"
1237
1253
  # resp.image.image_recipe.block_device_mappings[0].virtual_name #=> String
1238
1254
  # resp.image.image_recipe.block_device_mappings[0].no_device #=> String
1239
1255
  # resp.image.image_recipe.date_created #=> String
@@ -1269,6 +1285,8 @@ module Aws::Imagebuilder
1269
1285
  # resp.image.distribution_configuration.distributions[0].region #=> String
1270
1286
  # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.name #=> String
1271
1287
  # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.description #=> String
1288
+ # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids #=> Array
1289
+ # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids[0] #=> String
1272
1290
  # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags #=> Hash
1273
1291
  # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags["TagKey"] #=> String
1274
1292
  # resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.kms_key_id #=> String
@@ -1293,6 +1311,7 @@ module Aws::Imagebuilder
1293
1311
  # resp.image.output_resources.amis[0].description #=> String
1294
1312
  # resp.image.output_resources.amis[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED"
1295
1313
  # resp.image.output_resources.amis[0].state.reason #=> String
1314
+ # resp.image.output_resources.amis[0].account_id #=> String
1296
1315
  # resp.image.tags #=> Hash
1297
1316
  # resp.image.tags["TagKey"] #=> String
1298
1317
  #
@@ -1422,7 +1441,7 @@ module Aws::Imagebuilder
1422
1441
  # resp.image_recipe.block_device_mappings[0].ebs.kms_key_id #=> String
1423
1442
  # resp.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
1424
1443
  # resp.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
1425
- # resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
1444
+ # resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1"
1426
1445
  # resp.image_recipe.block_device_mappings[0].virtual_name #=> String
1427
1446
  # resp.image_recipe.block_device_mappings[0].no_device #=> String
1428
1447
  # resp.image_recipe.date_created #=> String
@@ -1638,7 +1657,7 @@ module Aws::Imagebuilder
1638
1657
  # resp = client.list_component_build_versions({
1639
1658
  # component_version_arn: "ComponentVersionArn", # required
1640
1659
  # max_results: 1,
1641
- # next_token: "NonEmptyString",
1660
+ # next_token: "PaginationToken",
1642
1661
  # })
1643
1662
  #
1644
1663
  # @example Response structure
@@ -1708,7 +1727,7 @@ module Aws::Imagebuilder
1708
1727
  # },
1709
1728
  # ],
1710
1729
  # max_results: 1,
1711
- # next_token: "NonEmptyString",
1730
+ # next_token: "PaginationToken",
1712
1731
  # })
1713
1732
  #
1714
1733
  # @example Response structure
@@ -1741,6 +1760,10 @@ module Aws::Imagebuilder
1741
1760
  # @option params [Array<Types::Filter>] :filters
1742
1761
  # The filters.
1743
1762
  #
1763
+ # * `name` - The name of this distribution configuration.
1764
+ #
1765
+ # ^
1766
+ #
1744
1767
  # @option params [Integer] :max_results
1745
1768
  # The maximum items to return in a request.
1746
1769
  #
@@ -1766,7 +1789,7 @@ module Aws::Imagebuilder
1766
1789
  # },
1767
1790
  # ],
1768
1791
  # max_results: 1,
1769
- # next_token: "NonEmptyString",
1792
+ # next_token: "PaginationToken",
1770
1793
  # })
1771
1794
  #
1772
1795
  # @example Response structure
@@ -1826,7 +1849,7 @@ module Aws::Imagebuilder
1826
1849
  # },
1827
1850
  # ],
1828
1851
  # max_results: 1,
1829
- # next_token: "NonEmptyString",
1852
+ # next_token: "PaginationToken",
1830
1853
  # })
1831
1854
  #
1832
1855
  # @example Response structure
@@ -1849,6 +1872,7 @@ module Aws::Imagebuilder
1849
1872
  # resp.image_summary_list[0].output_resources.amis[0].description #=> String
1850
1873
  # resp.image_summary_list[0].output_resources.amis[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED"
1851
1874
  # resp.image_summary_list[0].output_resources.amis[0].state.reason #=> String
1875
+ # resp.image_summary_list[0].output_resources.amis[0].account_id #=> String
1852
1876
  # resp.image_summary_list[0].tags #=> Hash
1853
1877
  # resp.image_summary_list[0].tags["TagKey"] #=> String
1854
1878
  # resp.next_token #=> String
@@ -1897,7 +1921,7 @@ module Aws::Imagebuilder
1897
1921
  # },
1898
1922
  # ],
1899
1923
  # max_results: 1,
1900
- # next_token: "NonEmptyString",
1924
+ # next_token: "PaginationToken",
1901
1925
  # })
1902
1926
  #
1903
1927
  # @example Response structure
@@ -1920,6 +1944,7 @@ module Aws::Imagebuilder
1920
1944
  # resp.image_summary_list[0].output_resources.amis[0].description #=> String
1921
1945
  # resp.image_summary_list[0].output_resources.amis[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED"
1922
1946
  # resp.image_summary_list[0].output_resources.amis[0].state.reason #=> String
1947
+ # resp.image_summary_list[0].output_resources.amis[0].account_id #=> String
1923
1948
  # resp.image_summary_list[0].tags #=> Hash
1924
1949
  # resp.image_summary_list[0].tags["TagKey"] #=> String
1925
1950
  # resp.next_token #=> String
@@ -1963,7 +1988,7 @@ module Aws::Imagebuilder
1963
1988
  # },
1964
1989
  # ],
1965
1990
  # max_results: 1,
1966
- # next_token: "NonEmptyString",
1991
+ # next_token: "PaginationToken",
1967
1992
  # })
1968
1993
  #
1969
1994
  # @example Response structure
@@ -2038,7 +2063,7 @@ module Aws::Imagebuilder
2038
2063
  # },
2039
2064
  # ],
2040
2065
  # max_results: 1,
2041
- # next_token: "NonEmptyString",
2066
+ # next_token: "PaginationToken",
2042
2067
  # })
2043
2068
  #
2044
2069
  # @example Response structure
@@ -2102,7 +2127,7 @@ module Aws::Imagebuilder
2102
2127
  # },
2103
2128
  # ],
2104
2129
  # max_results: 1,
2105
- # next_token: "NonEmptyString",
2130
+ # next_token: "PaginationToken",
2106
2131
  # })
2107
2132
  #
2108
2133
  # @example Response structure
@@ -2157,7 +2182,7 @@ module Aws::Imagebuilder
2157
2182
  # },
2158
2183
  # ],
2159
2184
  # max_results: 1,
2160
- # next_token: "NonEmptyString",
2185
+ # next_token: "PaginationToken",
2161
2186
  # })
2162
2187
  #
2163
2188
  # @example Response structure
@@ -2477,16 +2502,17 @@ module Aws::Imagebuilder
2477
2502
  # ami_distribution_configuration: {
2478
2503
  # name: "AmiNameString",
2479
2504
  # description: "NonEmptyString",
2505
+ # target_account_ids: ["AccountId"],
2480
2506
  # ami_tags: {
2481
2507
  # "TagKey" => "TagValue",
2482
2508
  # },
2483
2509
  # kms_key_id: "NonEmptyString",
2484
2510
  # launch_permission: {
2485
- # user_ids: ["NonEmptyString"],
2511
+ # user_ids: ["AccountId"],
2486
2512
  # user_groups: ["NonEmptyString"],
2487
2513
  # },
2488
2514
  # },
2489
- # license_configuration_arns: ["Arn"],
2515
+ # license_configuration_arns: ["LicenseConfigurationArn"],
2490
2516
  # },
2491
2517
  # ],
2492
2518
  # client_token: "ClientToken", # required
@@ -2703,7 +2729,7 @@ module Aws::Imagebuilder
2703
2729
  params: params,
2704
2730
  config: config)
2705
2731
  context[:gem_name] = 'aws-sdk-imagebuilder'
2706
- context[:gem_version] = '1.11.0'
2732
+ context[:gem_version] = '1.16.0'
2707
2733
  Seahorse::Client::Request.new(handlers, context)
2708
2734
  end
2709
2735
 
@@ -13,13 +13,13 @@ module Aws::Imagebuilder
13
13
 
14
14
  include Seahorse::Model
15
15
 
16
+ AccountId = Shapes::StringShape.new(name: 'AccountId')
16
17
  AccountList = Shapes::ListShape.new(name: 'AccountList')
17
18
  Ami = Shapes::StructureShape.new(name: 'Ami')
18
19
  AmiDistributionConfiguration = Shapes::StructureShape.new(name: 'AmiDistributionConfiguration')
19
20
  AmiList = Shapes::ListShape.new(name: 'AmiList')
20
21
  AmiNameString = Shapes::StringShape.new(name: 'AmiNameString')
21
22
  Arn = Shapes::StringShape.new(name: 'Arn')
22
- ArnList = Shapes::ListShape.new(name: 'ArnList')
23
23
  CallRateLimitExceededException = Shapes::StructureShape.new(name: 'CallRateLimitExceededException')
24
24
  CancelImageCreationRequest = Shapes::StructureShape.new(name: 'CancelImageCreationRequest')
25
25
  CancelImageCreationResponse = Shapes::StructureShape.new(name: 'CancelImageCreationResponse')
@@ -139,6 +139,8 @@ module Aws::Imagebuilder
139
139
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
140
140
  InvalidVersionNumberException = Shapes::StructureShape.new(name: 'InvalidVersionNumberException')
141
141
  LaunchPermissionConfiguration = Shapes::StructureShape.new(name: 'LaunchPermissionConfiguration')
142
+ LicenseConfigurationArn = Shapes::StringShape.new(name: 'LicenseConfigurationArn')
143
+ LicenseConfigurationArnList = Shapes::ListShape.new(name: 'LicenseConfigurationArnList')
142
144
  ListComponentBuildVersionsRequest = Shapes::StructureShape.new(name: 'ListComponentBuildVersionsRequest')
143
145
  ListComponentBuildVersionsResponse = Shapes::StructureShape.new(name: 'ListComponentBuildVersionsResponse')
144
146
  ListComponentsRequest = Shapes::StructureShape.new(name: 'ListComponentsRequest')
@@ -166,6 +168,7 @@ module Aws::Imagebuilder
166
168
  OsVersionList = Shapes::ListShape.new(name: 'OsVersionList')
167
169
  OutputResources = Shapes::StructureShape.new(name: 'OutputResources')
168
170
  Ownership = Shapes::StringShape.new(name: 'Ownership')
171
+ PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
169
172
  PipelineExecutionStartCondition = Shapes::StringShape.new(name: 'PipelineExecutionStartCondition')
170
173
  PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
171
174
  Platform = Shapes::StringShape.new(name: 'Platform')
@@ -210,17 +213,19 @@ module Aws::Imagebuilder
210
213
  Uri = Shapes::StringShape.new(name: 'Uri')
211
214
  VersionNumber = Shapes::StringShape.new(name: 'VersionNumber')
212
215
 
213
- AccountList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
216
+ AccountList.member = Shapes::ShapeRef.new(shape: AccountId)
214
217
 
215
218
  Ami.add_member(:region, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "region"))
216
219
  Ami.add_member(:image, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "image"))
217
220
  Ami.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "name"))
218
221
  Ami.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
219
222
  Ami.add_member(:state, Shapes::ShapeRef.new(shape: ImageState, location_name: "state"))
223
+ Ami.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "accountId"))
220
224
  Ami.struct_class = Types::Ami
221
225
 
222
226
  AmiDistributionConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: AmiNameString, location_name: "name"))
223
227
  AmiDistributionConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
228
+ AmiDistributionConfiguration.add_member(:target_account_ids, Shapes::ShapeRef.new(shape: AccountList, location_name: "targetAccountIds"))
224
229
  AmiDistributionConfiguration.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
225
230
  AmiDistributionConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "kmsKeyId"))
226
231
  AmiDistributionConfiguration.add_member(:launch_permission, Shapes::ShapeRef.new(shape: LaunchPermissionConfiguration, location_name: "launchPermission"))
@@ -228,8 +233,6 @@ module Aws::Imagebuilder
228
233
 
229
234
  AmiList.member = Shapes::ShapeRef.new(shape: Ami)
230
235
 
231
- ArnList.member = Shapes::ShapeRef.new(shape: Arn)
232
-
233
236
  CallRateLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
234
237
  CallRateLimitExceededException.struct_class = Types::CallRateLimitExceededException
235
238
 
@@ -436,7 +439,7 @@ module Aws::Imagebuilder
436
439
 
437
440
  Distribution.add_member(:region, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "region"))
438
441
  Distribution.add_member(:ami_distribution_configuration, Shapes::ShapeRef.new(shape: AmiDistributionConfiguration, location_name: "amiDistributionConfiguration"))
439
- Distribution.add_member(:license_configuration_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "licenseConfigurationArns"))
442
+ Distribution.add_member(:license_configuration_arns, Shapes::ShapeRef.new(shape: LicenseConfigurationArnList, location_name: "licenseConfigurationArns"))
440
443
  Distribution.struct_class = Types::Distribution
441
444
 
442
445
  DistributionConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
@@ -722,99 +725,101 @@ module Aws::Imagebuilder
722
725
  LaunchPermissionConfiguration.add_member(:user_groups, Shapes::ShapeRef.new(shape: StringList, location_name: "userGroups"))
723
726
  LaunchPermissionConfiguration.struct_class = Types::LaunchPermissionConfiguration
724
727
 
728
+ LicenseConfigurationArnList.member = Shapes::ShapeRef.new(shape: LicenseConfigurationArn)
729
+
725
730
  ListComponentBuildVersionsRequest.add_member(:component_version_arn, Shapes::ShapeRef.new(shape: ComponentVersionArn, required: true, location_name: "componentVersionArn"))
726
731
  ListComponentBuildVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
727
- ListComponentBuildVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
732
+ ListComponentBuildVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
728
733
  ListComponentBuildVersionsRequest.struct_class = Types::ListComponentBuildVersionsRequest
729
734
 
730
735
  ListComponentBuildVersionsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
731
736
  ListComponentBuildVersionsResponse.add_member(:component_summary_list, Shapes::ShapeRef.new(shape: ComponentSummaryList, location_name: "componentSummaryList"))
732
- ListComponentBuildVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
737
+ ListComponentBuildVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
733
738
  ListComponentBuildVersionsResponse.struct_class = Types::ListComponentBuildVersionsResponse
734
739
 
735
740
  ListComponentsRequest.add_member(:owner, Shapes::ShapeRef.new(shape: Ownership, location_name: "owner"))
736
741
  ListComponentsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
737
742
  ListComponentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
738
- ListComponentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
743
+ ListComponentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
739
744
  ListComponentsRequest.struct_class = Types::ListComponentsRequest
740
745
 
741
746
  ListComponentsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
742
747
  ListComponentsResponse.add_member(:component_version_list, Shapes::ShapeRef.new(shape: ComponentVersionList, location_name: "componentVersionList"))
743
- ListComponentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
748
+ ListComponentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
744
749
  ListComponentsResponse.struct_class = Types::ListComponentsResponse
745
750
 
746
751
  ListDistributionConfigurationsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
747
752
  ListDistributionConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
748
- ListDistributionConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
753
+ ListDistributionConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
749
754
  ListDistributionConfigurationsRequest.struct_class = Types::ListDistributionConfigurationsRequest
750
755
 
751
756
  ListDistributionConfigurationsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
752
757
  ListDistributionConfigurationsResponse.add_member(:distribution_configuration_summary_list, Shapes::ShapeRef.new(shape: DistributionConfigurationSummaryList, location_name: "distributionConfigurationSummaryList"))
753
- ListDistributionConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
758
+ ListDistributionConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
754
759
  ListDistributionConfigurationsResponse.struct_class = Types::ListDistributionConfigurationsResponse
755
760
 
756
761
  ListImageBuildVersionsRequest.add_member(:image_version_arn, Shapes::ShapeRef.new(shape: ImageVersionArn, required: true, location_name: "imageVersionArn"))
757
762
  ListImageBuildVersionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
758
763
  ListImageBuildVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
759
- ListImageBuildVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
764
+ ListImageBuildVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
760
765
  ListImageBuildVersionsRequest.struct_class = Types::ListImageBuildVersionsRequest
761
766
 
762
767
  ListImageBuildVersionsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
763
768
  ListImageBuildVersionsResponse.add_member(:image_summary_list, Shapes::ShapeRef.new(shape: ImageSummaryList, location_name: "imageSummaryList"))
764
- ListImageBuildVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
769
+ ListImageBuildVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
765
770
  ListImageBuildVersionsResponse.struct_class = Types::ListImageBuildVersionsResponse
766
771
 
767
772
  ListImagePipelineImagesRequest.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, required: true, location_name: "imagePipelineArn"))
768
773
  ListImagePipelineImagesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
769
774
  ListImagePipelineImagesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
770
- ListImagePipelineImagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
775
+ ListImagePipelineImagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
771
776
  ListImagePipelineImagesRequest.struct_class = Types::ListImagePipelineImagesRequest
772
777
 
773
778
  ListImagePipelineImagesResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
774
779
  ListImagePipelineImagesResponse.add_member(:image_summary_list, Shapes::ShapeRef.new(shape: ImageSummaryList, location_name: "imageSummaryList"))
775
- ListImagePipelineImagesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
780
+ ListImagePipelineImagesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
776
781
  ListImagePipelineImagesResponse.struct_class = Types::ListImagePipelineImagesResponse
777
782
 
778
783
  ListImagePipelinesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
779
784
  ListImagePipelinesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
780
- ListImagePipelinesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
785
+ ListImagePipelinesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
781
786
  ListImagePipelinesRequest.struct_class = Types::ListImagePipelinesRequest
782
787
 
783
788
  ListImagePipelinesResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
784
789
  ListImagePipelinesResponse.add_member(:image_pipeline_list, Shapes::ShapeRef.new(shape: ImagePipelineList, location_name: "imagePipelineList"))
785
- ListImagePipelinesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
790
+ ListImagePipelinesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
786
791
  ListImagePipelinesResponse.struct_class = Types::ListImagePipelinesResponse
787
792
 
788
793
  ListImageRecipesRequest.add_member(:owner, Shapes::ShapeRef.new(shape: Ownership, location_name: "owner"))
789
794
  ListImageRecipesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
790
795
  ListImageRecipesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
791
- ListImageRecipesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
796
+ ListImageRecipesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
792
797
  ListImageRecipesRequest.struct_class = Types::ListImageRecipesRequest
793
798
 
794
799
  ListImageRecipesResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
795
800
  ListImageRecipesResponse.add_member(:image_recipe_summary_list, Shapes::ShapeRef.new(shape: ImageRecipeSummaryList, location_name: "imageRecipeSummaryList"))
796
- ListImageRecipesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
801
+ ListImageRecipesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
797
802
  ListImageRecipesResponse.struct_class = Types::ListImageRecipesResponse
798
803
 
799
804
  ListImagesRequest.add_member(:owner, Shapes::ShapeRef.new(shape: Ownership, location_name: "owner"))
800
805
  ListImagesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
801
806
  ListImagesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
802
- ListImagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
807
+ ListImagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
803
808
  ListImagesRequest.struct_class = Types::ListImagesRequest
804
809
 
805
810
  ListImagesResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
806
811
  ListImagesResponse.add_member(:image_version_list, Shapes::ShapeRef.new(shape: ImageVersionList, location_name: "imageVersionList"))
807
- ListImagesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
812
+ ListImagesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
808
813
  ListImagesResponse.struct_class = Types::ListImagesResponse
809
814
 
810
815
  ListInfrastructureConfigurationsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
811
816
  ListInfrastructureConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
812
- ListInfrastructureConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
817
+ ListInfrastructureConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
813
818
  ListInfrastructureConfigurationsRequest.struct_class = Types::ListInfrastructureConfigurationsRequest
814
819
 
815
820
  ListInfrastructureConfigurationsResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
816
821
  ListInfrastructureConfigurationsResponse.add_member(:infrastructure_configuration_summary_list, Shapes::ShapeRef.new(shape: InfrastructureConfigurationSummaryList, location_name: "infrastructureConfigurationSummaryList"))
817
- ListInfrastructureConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
822
+ ListInfrastructureConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
818
823
  ListInfrastructureConfigurationsResponse.struct_class = Types::ListInfrastructureConfigurationsResponse
819
824
 
820
825
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, required: true, location: "uri", location_name: "resourceArn"))
@@ -25,13 +25,18 @@ module Aws::Imagebuilder
25
25
  # @return [String]
26
26
  #
27
27
  # @!attribute [rw] description
28
- # The description of the EC2 AMI.
28
+ # The description of the EC2 AMI. Minimum and maximum length are in
29
+ # characters.
29
30
  # @return [String]
30
31
  #
31
32
  # @!attribute [rw] state
32
33
  # Image state shows the image status and the reason for that status.
33
34
  # @return [Types::ImageState]
34
35
  #
36
+ # @!attribute [rw] account_id
37
+ # The account ID of the owner of the AMI.
38
+ # @return [String]
39
+ #
35
40
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Ami AWS API Documentation
36
41
  #
37
42
  class Ami < Struct.new(
@@ -39,7 +44,8 @@ module Aws::Imagebuilder
39
44
  :image,
40
45
  :name,
41
46
  :description,
42
- :state)
47
+ :state,
48
+ :account_id)
43
49
  SENSITIVE = []
44
50
  include Aws::Structure
45
51
  end
@@ -52,12 +58,13 @@ module Aws::Imagebuilder
52
58
  # {
53
59
  # name: "AmiNameString",
54
60
  # description: "NonEmptyString",
61
+ # target_account_ids: ["AccountId"],
55
62
  # ami_tags: {
56
63
  # "TagKey" => "TagValue",
57
64
  # },
58
65
  # kms_key_id: "NonEmptyString",
59
66
  # launch_permission: {
60
- # user_ids: ["NonEmptyString"],
67
+ # user_ids: ["AccountId"],
61
68
  # user_groups: ["NonEmptyString"],
62
69
  # },
63
70
  # }
@@ -67,9 +74,14 @@ module Aws::Imagebuilder
67
74
  # @return [String]
68
75
  #
69
76
  # @!attribute [rw] description
70
- # The description of the distribution configuration.
77
+ # The description of the distribution configuration. Minimum and
78
+ # maximum length are in characters.
71
79
  # @return [String]
72
80
  #
81
+ # @!attribute [rw] target_account_ids
82
+ # The ID of an account to which you want to distribute an image.
83
+ # @return [Array<String>]
84
+ #
73
85
  # @!attribute [rw] ami_tags
74
86
  # The tags to apply to AMIs distributed to this Region.
75
87
  # @return [Hash<String,String>]
@@ -88,6 +100,7 @@ module Aws::Imagebuilder
88
100
  class AmiDistributionConfiguration < Struct.new(
89
101
  :name,
90
102
  :description,
103
+ :target_account_ids,
91
104
  :ami_tags,
92
105
  :kms_key_id,
93
106
  :launch_permission)
@@ -535,16 +548,17 @@ module Aws::Imagebuilder
535
548
  # ami_distribution_configuration: {
536
549
  # name: "AmiNameString",
537
550
  # description: "NonEmptyString",
551
+ # target_account_ids: ["AccountId"],
538
552
  # ami_tags: {
539
553
  # "TagKey" => "TagValue",
540
554
  # },
541
555
  # kms_key_id: "NonEmptyString",
542
556
  # launch_permission: {
543
- # user_ids: ["NonEmptyString"],
557
+ # user_ids: ["AccountId"],
544
558
  # user_groups: ["NonEmptyString"],
545
559
  # },
546
560
  # },
547
- # license_configuration_arns: ["Arn"],
561
+ # license_configuration_arns: ["LicenseConfigurationArn"],
548
562
  # },
549
563
  # ],
550
564
  # tags: {
@@ -754,7 +768,7 @@ module Aws::Imagebuilder
754
768
  # kms_key_id: "NonEmptyString",
755
769
  # snapshot_id: "NonEmptyString",
756
770
  # volume_size: 1,
757
- # volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
771
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
758
772
  # },
759
773
  # virtual_name: "NonEmptyString",
760
774
  # no_device: "EmptyString",
@@ -787,9 +801,7 @@ module Aws::Imagebuilder
787
801
  # The parent image of the image recipe. The value of the string can be
788
802
  # the ARN of the parent image or an AMI ID. The format for the ARN
789
803
  # follows this example:
790
- # `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/2019.x.x`.
791
- # The ARN ends with `/20xx.x.x`, which communicates to EC2 Image
792
- # Builder that you want to use the latest AMI created in 20xx (year).
804
+ # `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/xxxx.x.x`.
793
805
  # You can provide the specific version that you want to use, or you
794
806
  # can use a wildcard in all of the fields. If you enter an AMI ID for
795
807
  # the string value, you must have access to the AMI, and the AMI must
@@ -1315,16 +1327,17 @@ module Aws::Imagebuilder
1315
1327
  # ami_distribution_configuration: {
1316
1328
  # name: "AmiNameString",
1317
1329
  # description: "NonEmptyString",
1330
+ # target_account_ids: ["AccountId"],
1318
1331
  # ami_tags: {
1319
1332
  # "TagKey" => "TagValue",
1320
1333
  # },
1321
1334
  # kms_key_id: "NonEmptyString",
1322
1335
  # launch_permission: {
1323
- # user_ids: ["NonEmptyString"],
1336
+ # user_ids: ["AccountId"],
1324
1337
  # user_groups: ["NonEmptyString"],
1325
1338
  # },
1326
1339
  # },
1327
- # license_configuration_arns: ["Arn"],
1340
+ # license_configuration_arns: ["LicenseConfigurationArn"],
1328
1341
  # }
1329
1342
  #
1330
1343
  # @!attribute [rw] region
@@ -1451,7 +1464,7 @@ module Aws::Imagebuilder
1451
1464
  # kms_key_id: "NonEmptyString",
1452
1465
  # snapshot_id: "NonEmptyString",
1453
1466
  # volume_size: 1,
1454
- # volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
1467
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
1455
1468
  # }
1456
1469
  #
1457
1470
  # @!attribute [rw] encrypted
@@ -2613,7 +2626,7 @@ module Aws::Imagebuilder
2613
2626
  # kms_key_id: "NonEmptyString",
2614
2627
  # snapshot_id: "NonEmptyString",
2615
2628
  # volume_size: 1,
2616
- # volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
2629
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
2617
2630
  # },
2618
2631
  # virtual_name: "NonEmptyString",
2619
2632
  # no_device: "EmptyString",
@@ -2743,7 +2756,7 @@ module Aws::Imagebuilder
2743
2756
  # data as a hash:
2744
2757
  #
2745
2758
  # {
2746
- # user_ids: ["NonEmptyString"],
2759
+ # user_ids: ["AccountId"],
2747
2760
  # user_groups: ["NonEmptyString"],
2748
2761
  # }
2749
2762
  #
@@ -2770,7 +2783,7 @@ module Aws::Imagebuilder
2770
2783
  # {
2771
2784
  # component_version_arn: "ComponentVersionArn", # required
2772
2785
  # max_results: 1,
2773
- # next_token: "NonEmptyString",
2786
+ # next_token: "PaginationToken",
2774
2787
  # }
2775
2788
  #
2776
2789
  # @!attribute [rw] component_version_arn
@@ -2834,7 +2847,7 @@ module Aws::Imagebuilder
2834
2847
  # },
2835
2848
  # ],
2836
2849
  # max_results: 1,
2837
- # next_token: "NonEmptyString",
2850
+ # next_token: "PaginationToken",
2838
2851
  # }
2839
2852
  #
2840
2853
  # @!attribute [rw] owner
@@ -2905,11 +2918,15 @@ module Aws::Imagebuilder
2905
2918
  # },
2906
2919
  # ],
2907
2920
  # max_results: 1,
2908
- # next_token: "NonEmptyString",
2921
+ # next_token: "PaginationToken",
2909
2922
  # }
2910
2923
  #
2911
2924
  # @!attribute [rw] filters
2912
2925
  # The filters.
2926
+ #
2927
+ # * `name` - The name of this distribution configuration.
2928
+ #
2929
+ # ^
2913
2930
  # @return [Array<Types::Filter>]
2914
2931
  #
2915
2932
  # @!attribute [rw] max_results
@@ -2968,7 +2985,7 @@ module Aws::Imagebuilder
2968
2985
  # },
2969
2986
  # ],
2970
2987
  # max_results: 1,
2971
- # next_token: "NonEmptyString",
2988
+ # next_token: "PaginationToken",
2972
2989
  # }
2973
2990
  #
2974
2991
  # @!attribute [rw] image_version_arn
@@ -3037,7 +3054,7 @@ module Aws::Imagebuilder
3037
3054
  # },
3038
3055
  # ],
3039
3056
  # max_results: 1,
3040
- # next_token: "NonEmptyString",
3057
+ # next_token: "PaginationToken",
3041
3058
  # }
3042
3059
  #
3043
3060
  # @!attribute [rw] image_pipeline_arn
@@ -3105,7 +3122,7 @@ module Aws::Imagebuilder
3105
3122
  # },
3106
3123
  # ],
3107
3124
  # max_results: 1,
3108
- # next_token: "NonEmptyString",
3125
+ # next_token: "PaginationToken",
3109
3126
  # }
3110
3127
  #
3111
3128
  # @!attribute [rw] filters
@@ -3168,7 +3185,7 @@ module Aws::Imagebuilder
3168
3185
  # },
3169
3186
  # ],
3170
3187
  # max_results: 1,
3171
- # next_token: "NonEmptyString",
3188
+ # next_token: "PaginationToken",
3172
3189
  # }
3173
3190
  #
3174
3191
  # @!attribute [rw] owner
@@ -3240,7 +3257,7 @@ module Aws::Imagebuilder
3240
3257
  # },
3241
3258
  # ],
3242
3259
  # max_results: 1,
3243
- # next_token: "NonEmptyString",
3260
+ # next_token: "PaginationToken",
3244
3261
  # }
3245
3262
  #
3246
3263
  # @!attribute [rw] owner
@@ -3311,7 +3328,7 @@ module Aws::Imagebuilder
3311
3328
  # },
3312
3329
  # ],
3313
3330
  # max_results: 1,
3314
- # next_token: "NonEmptyString",
3331
+ # next_token: "PaginationToken",
3315
3332
  # }
3316
3333
  #
3317
3334
  # @!attribute [rw] filters
@@ -3658,17 +3675,33 @@ module Aws::Imagebuilder
3658
3675
  # }
3659
3676
  #
3660
3677
  # @!attribute [rw] schedule_expression
3661
- # The expression determines how often EC2 Image Builder evaluates your
3662
- # `pipelineExecutionStartCondition`.
3678
+ # The cron expression determines how often EC2 Image Builder evaluates
3679
+ # your `pipelineExecutionStartCondition`.
3680
+ #
3681
+ # For information on how to format a cron expression in Image Builder,
3682
+ # see [Use cron expressions in EC2 Image Builder][1].
3683
+ #
3684
+ #
3685
+ #
3686
+ # [1]: https://docs.aws.amazon.com/imagebuilder/latest/userguide/image-builder-cron.html
3663
3687
  # @return [String]
3664
3688
  #
3665
3689
  # @!attribute [rw] pipeline_execution_start_condition
3666
3690
  # The condition configures when the pipeline should trigger a new
3667
3691
  # image build. When the `pipelineExecutionStartCondition` is set to
3668
- # `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`, EC2 Image
3669
- # Builder will build a new image only when there are known changes
3670
- # pending. When it is set to `EXPRESSION_MATCH_ONLY`, it will build a
3671
- # new image every time the CRON expression matches the current time.
3692
+ # `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`, and you use
3693
+ # semantic version filters on the source image or components in your
3694
+ # image recipe, EC2 Image Builder will build a new image only when
3695
+ # there are new versions of the image or components in your recipe
3696
+ # that match the semantic version filter. When it is set to
3697
+ # `EXPRESSION_MATCH_ONLY`, it will build a new image every time the
3698
+ # CRON expression matches the current time. For semantic version
3699
+ # syntax, see [CreateComponent][1] in the <i> EC2 Image Builder API
3700
+ # Reference</i>.
3701
+ #
3702
+ #
3703
+ #
3704
+ # [1]: https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_CreateComponent.html
3672
3705
  # @return [String]
3673
3706
  #
3674
3707
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Schedule AWS API Documentation
@@ -3851,16 +3884,17 @@ module Aws::Imagebuilder
3851
3884
  # ami_distribution_configuration: {
3852
3885
  # name: "AmiNameString",
3853
3886
  # description: "NonEmptyString",
3887
+ # target_account_ids: ["AccountId"],
3854
3888
  # ami_tags: {
3855
3889
  # "TagKey" => "TagValue",
3856
3890
  # },
3857
3891
  # kms_key_id: "NonEmptyString",
3858
3892
  # launch_permission: {
3859
- # user_ids: ["NonEmptyString"],
3893
+ # user_ids: ["AccountId"],
3860
3894
  # user_groups: ["NonEmptyString"],
3861
3895
  # },
3862
3896
  # },
3863
- # license_configuration_arns: ["Arn"],
3897
+ # license_configuration_arns: ["LicenseConfigurationArn"],
3864
3898
  # },
3865
3899
  # ],
3866
3900
  # client_token: "ClientToken", # required
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-imagebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-01 00:00:00.000000000 Z
11
+ date: 2020-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.109.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement