aws-sdk-ec2 1.557.0 → 1.558.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd8316710f647555776987e9ec9cd4492cfab8d0de0ac0a6be24072fad69f609
4
- data.tar.gz: d8cd116bba2647d101b7ee7c28492bb5288cd9cf3668fb031097056d98ee2f29
3
+ metadata.gz: 2f60fdd287c273344c4629d5f8585035a908c423fd6de7abcb710fadf7e70ec2
4
+ data.tar.gz: 74847e01b5671930e69d325069c289ad001a8dde4318de46a651e06a8a2480ad
5
5
  SHA512:
6
- metadata.gz: 406c760f4fce1ac5e6eea90938253738a6b9c1fd61aec1bed7db24f765229cf8a3a244835afc914c4f938d8be33c036eefa4c6ed78698a790a00bb1b82c6137c
7
- data.tar.gz: b5279f5dd1cce07e90807bb6c64f5880106885149d10978708923b7b58e2cf6c6d18d32dda7f9716f41626faa7935618a9062c7fd0c80b4b624e91534aa5a7ed
6
+ metadata.gz: ff7e79b0c4d141ef887f928f5ddf4db10851fe0b175daef3aad1bb2685657c8c131eda416f76a69a7ede5e376bea3ec5b23efe5006b83d35593dd68572213bdf
7
+ data.tar.gz: 8669cf8af1e42f266faa0c50a3ea28955344df8e5c5c73b4482408adf8bd5942f83b470e785a8fb6b0ba335b28d941fa2a3c42101e3131d342625bf500bb1e99
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.558.0 (2025-09-18)
5
+ ------------------
6
+
7
+ * Feature - Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames
8
+
4
9
  1.557.0 (2025-09-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.557.0
1
+ 1.558.0
@@ -5151,32 +5151,29 @@ module Aws::EC2
5151
5151
  #
5152
5152
  # * If the source snapshot is on an Outpost, you can't copy it.
5153
5153
  #
5154
- # When copying snapshots to a Region, copies of encrypted EBS snapshots
5155
- # remain encrypted. Copies of unencrypted snapshots remain unencrypted,
5156
- # unless you enable encryption for the snapshot copy operation. By
5157
- # default, encrypted snapshot copies use the default KMS key; however,
5158
- # you can specify a different KMS key. To copy an encrypted snapshot
5159
- # that has been shared from another account, you must have permissions
5160
- # for the KMS key used to encrypt the snapshot.
5161
- #
5162
- # Snapshots copied to an Outpost are encrypted by default using the
5163
- # default encryption key for the Region, or a different key that you
5164
- # specify in the request using **KmsKeyId**. Outposts do not support
5165
- # unencrypted snapshots. For more information, see [Amazon EBS local
5166
- # snapshots on Outposts][1] in the *Amazon EBS User Guide*.
5154
+ # When copying snapshots to a Region, the encryption outcome for the
5155
+ # snapshot copy depends on the Amazon EBS encryption by default setting
5156
+ # for the destination Region, the encryption status of the source
5157
+ # snapshot, and the encryption parameters you specify in the request.
5158
+ # For more information, see [ Encryption and snapshot copying][1].
5159
+ #
5160
+ # Snapshots copied to an Outpost must be encrypted. Unencrypted
5161
+ # snapshots are not supported on Outposts. For more information, [
5162
+ # Amazon EBS local snapshots on Outposts][2].
5167
5163
  #
5168
5164
  # <note markdown="1"> Snapshots copies have an arbitrary source volume ID. Do not use this
5169
5165
  # volume ID for any purpose.
5170
5166
  #
5171
5167
  # </note>
5172
5168
  #
5173
- # For more information, see [Copy an Amazon EBS snapshot][2] in the
5169
+ # For more information, see [Copy an Amazon EBS snapshot][3] in the
5174
5170
  # *Amazon EBS User Guide*.
5175
5171
  #
5176
5172
  #
5177
5173
  #
5178
- # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
5179
- # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-copy-snapshot.html
5174
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-copy-snapshot.html#creating-encrypted-snapshots
5175
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#considerations
5176
+ # [3]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-copy-snapshot.html
5180
5177
  #
5181
5178
  # @option params [String] :description
5182
5179
  # A description for the EBS snapshot.
@@ -5210,10 +5207,10 @@ module Aws::EC2
5210
5207
  # @option params [Boolean] :encrypted
5211
5208
  # To encrypt a copy of an unencrypted snapshot if encryption by default
5212
5209
  # is not enabled, enable encryption using this parameter. Otherwise,
5213
- # omit this parameter. Encrypted snapshots are encrypted, even if you
5214
- # omit this parameter and encryption by default is not enabled. You
5215
- # cannot set this parameter to false. For more information, see [Amazon
5216
- # EBS encryption][1] in the *Amazon EBS User Guide*.
5210
+ # omit this parameter. Copies of encrypted snapshots are encrypted, even
5211
+ # if you omit this parameter and encryption by default is not enabled.
5212
+ # You cannot set this parameter to false. For more information, see
5213
+ # [Amazon EBS encryption][1] in the *Amazon EBS User Guide*.
5217
5214
  #
5218
5215
  #
5219
5216
  #
@@ -7810,8 +7807,8 @@ module Aws::EC2
7810
7807
  # Creates an Amazon FPGA Image (AFI) from the specified design
7811
7808
  # checkpoint (DCP).
7812
7809
  #
7813
- # The create operation is asynchronous. To verify that the AFI is ready
7814
- # for use, check the output logs.
7810
+ # The create operation is asynchronous. To verify that the AFI was
7811
+ # successfully created and is ready for use, check the output logs.
7815
7812
  #
7816
7813
  # An AFI contains the FPGA bitstream that is ready to download to an
7817
7814
  # FPGA. You can securely deploy an AFI on multiple FPGA-accelerated
@@ -26987,7 +26984,7 @@ module Aws::EC2
26987
26984
  #
26988
26985
  #
26989
26986
  #
26990
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ami-references-works.html
26987
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-ami-references.html#how-ami-references-works
26991
26988
  #
26992
26989
  # @option params [Array<Types::ResourceTypeRequest>] :resource_types
26993
26990
  # The Amazon Web Services resource types to check for image references.
@@ -29715,15 +29712,16 @@ module Aws::EC2
29715
29712
  #
29716
29713
  # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
29717
29714
  # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
29718
- # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
29719
- # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
29720
- # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
29721
- # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
29722
- # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
29723
- # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
29724
- # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
29725
- # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
29726
- # SQL Server Web`).
29715
+ # with HA` \| `Red Hat Enterprise Linux with High Availability` \|
29716
+ # `Red Hat Enterprise Linux with SQL Server Standard and HA` \| `Red
29717
+ # Hat Enterprise Linux with SQL Server Enterprise and HA` \| `Red Hat
29718
+ # Enterprise Linux with SQL Server Standard` \| `Red Hat Enterprise
29719
+ # Linux with SQL Server Web` \| `Red Hat Enterprise Linux with SQL
29720
+ # Server Enterprise` \| `SQL Server Enterprise` \| `SQL Server
29721
+ # Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro` \|
29722
+ # `Windows` \| `Windows BYOL` \| `Windows with SQL Server Enterprise`
29723
+ # \| `Windows with SQL Server Standard` \| `Windows with SQL Server
29724
+ # Web`).
29727
29725
  #
29728
29726
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
29729
29727
  #
@@ -44014,18 +44012,12 @@ module Aws::EC2
44014
44012
  # you can publicly share your AMIs in the specified Amazon Web Services
44015
44013
  # Region.
44016
44014
  #
44017
- # The API can take up to 10 minutes to configure this setting. During
44018
- # this time, if you run [GetImageBlockPublicAccessState][1], the
44019
- # response will be `block-new-sharing`. When the API has completed the
44020
- # configuration, the response will be `unblocked`.
44021
- #
44022
- # For more information, see [Block public access to your AMIs][2] in the
44015
+ # For more information, see [Block public access to your AMIs][1] in the
44023
44016
  # *Amazon EC2 User Guide*.
44024
44017
  #
44025
44018
  #
44026
44019
  #
44027
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetImageBlockPublicAccessState.html
44028
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-public-access-to-amis.html
44020
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-public-access-to-amis.html
44029
44021
  #
44030
44022
  # @option params [Boolean] :dry_run
44031
44023
  # Checks whether you have the required permissions for the action,
@@ -46917,6 +46909,12 @@ module Aws::EC2
46917
46909
  # resp.image_criteria #=> Array
46918
46910
  # resp.image_criteria[0].image_providers #=> Array
46919
46911
  # resp.image_criteria[0].image_providers[0] #=> String
46912
+ # resp.image_criteria[0].marketplace_product_codes #=> Array
46913
+ # resp.image_criteria[0].marketplace_product_codes[0] #=> String
46914
+ # resp.image_criteria[0].image_names #=> Array
46915
+ # resp.image_criteria[0].image_names[0] #=> String
46916
+ # resp.image_criteria[0].deprecation_time_condition.maximum_days_since_deprecated #=> Integer
46917
+ # resp.image_criteria[0].creation_date_condition.maximum_days_since_created #=> Integer
46920
46918
  # resp.managed_by #=> String, one of "account", "declarative-policy"
46921
46919
  #
46922
46920
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAllowedImagesSettings AWS API Documentation
@@ -61128,6 +61126,14 @@ module Aws::EC2
61128
61126
  # image_criteria: [
61129
61127
  # {
61130
61128
  # image_providers: ["ImageProviderRequest"],
61129
+ # marketplace_product_codes: ["MarketplaceProductCodeRequest"],
61130
+ # image_names: ["ImageNameRequest"],
61131
+ # deprecation_time_condition: {
61132
+ # maximum_days_since_deprecated: 1,
61133
+ # },
61134
+ # creation_date_condition: {
61135
+ # maximum_days_since_created: 1,
61136
+ # },
61131
61137
  # },
61132
61138
  # ],
61133
61139
  # dry_run: false,
@@ -67158,7 +67164,7 @@ module Aws::EC2
67158
67164
  tracer: tracer
67159
67165
  )
67160
67166
  context[:gem_name] = 'aws-sdk-ec2'
67161
- context[:gem_version] = '1.557.0'
67167
+ context[:gem_version] = '1.558.0'
67162
67168
  Seahorse::Client::Request.new(handlers, context)
67163
67169
  end
67164
67170
 
@@ -660,6 +660,8 @@ module Aws::EC2
660
660
  CreateVpnConnectionRouteRequest = Shapes::StructureShape.new(name: 'CreateVpnConnectionRouteRequest')
661
661
  CreateVpnGatewayRequest = Shapes::StructureShape.new(name: 'CreateVpnGatewayRequest')
662
662
  CreateVpnGatewayResult = Shapes::StructureShape.new(name: 'CreateVpnGatewayResult')
663
+ CreationDateCondition = Shapes::StructureShape.new(name: 'CreationDateCondition')
664
+ CreationDateConditionRequest = Shapes::StructureShape.new(name: 'CreationDateConditionRequest')
663
665
  CreditSpecification = Shapes::StructureShape.new(name: 'CreditSpecification')
664
666
  CreditSpecificationRequest = Shapes::StructureShape.new(name: 'CreditSpecificationRequest')
665
667
  CurrencyCodeValues = Shapes::StringShape.new(name: 'CurrencyCodeValues')
@@ -852,6 +854,8 @@ module Aws::EC2
852
854
  DeleteVpnConnectionRequest = Shapes::StructureShape.new(name: 'DeleteVpnConnectionRequest')
853
855
  DeleteVpnConnectionRouteRequest = Shapes::StructureShape.new(name: 'DeleteVpnConnectionRouteRequest')
854
856
  DeleteVpnGatewayRequest = Shapes::StructureShape.new(name: 'DeleteVpnGatewayRequest')
857
+ DeprecationTimeCondition = Shapes::StructureShape.new(name: 'DeprecationTimeCondition')
858
+ DeprecationTimeConditionRequest = Shapes::StructureShape.new(name: 'DeprecationTimeConditionRequest')
855
859
  DeprovisionByoipCidrRequest = Shapes::StructureShape.new(name: 'DeprovisionByoipCidrRequest')
856
860
  DeprovisionByoipCidrResult = Shapes::StructureShape.new(name: 'DeprovisionByoipCidrResult')
857
861
  DeprovisionIpamByoasnRequest = Shapes::StructureShape.new(name: 'DeprovisionIpamByoasnRequest')
@@ -1825,6 +1829,10 @@ module Aws::EC2
1825
1829
  ImageIdStringList = Shapes::ListShape.new(name: 'ImageIdStringList')
1826
1830
  ImageList = Shapes::ListShape.new(name: 'ImageList')
1827
1831
  ImageMetadata = Shapes::StructureShape.new(name: 'ImageMetadata')
1832
+ ImageName = Shapes::StringShape.new(name: 'ImageName')
1833
+ ImageNameList = Shapes::ListShape.new(name: 'ImageNameList')
1834
+ ImageNameRequest = Shapes::StringShape.new(name: 'ImageNameRequest')
1835
+ ImageNameRequestList = Shapes::ListShape.new(name: 'ImageNameRequestList')
1828
1836
  ImageProvider = Shapes::StringShape.new(name: 'ImageProvider')
1829
1837
  ImageProviderList = Shapes::ListShape.new(name: 'ImageProviderList')
1830
1838
  ImageProviderRequest = Shapes::StringShape.new(name: 'ImageProviderRequest')
@@ -2332,12 +2340,18 @@ module Aws::EC2
2332
2340
  ManagedPrefixList = Shapes::StructureShape.new(name: 'ManagedPrefixList')
2333
2341
  ManagedPrefixListSet = Shapes::ListShape.new(name: 'ManagedPrefixListSet')
2334
2342
  MarketType = Shapes::StringShape.new(name: 'MarketType')
2343
+ MarketplaceProductCode = Shapes::StringShape.new(name: 'MarketplaceProductCode')
2344
+ MarketplaceProductCodeList = Shapes::ListShape.new(name: 'MarketplaceProductCodeList')
2345
+ MarketplaceProductCodeRequest = Shapes::StringShape.new(name: 'MarketplaceProductCodeRequest')
2346
+ MarketplaceProductCodeRequestList = Shapes::ListShape.new(name: 'MarketplaceProductCodeRequestList')
2335
2347
  MaxIpv4AddrPerInterface = Shapes::IntegerShape.new(name: 'MaxIpv4AddrPerInterface')
2336
2348
  MaxIpv6AddrPerInterface = Shapes::IntegerShape.new(name: 'MaxIpv6AddrPerInterface')
2337
2349
  MaxNetworkInterfaces = Shapes::IntegerShape.new(name: 'MaxNetworkInterfaces')
2338
2350
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
2339
2351
  MaxResultsParam = Shapes::IntegerShape.new(name: 'MaxResultsParam')
2340
2352
  MaximumBandwidthInMbps = Shapes::IntegerShape.new(name: 'MaximumBandwidthInMbps')
2353
+ MaximumDaysSinceCreatedValue = Shapes::IntegerShape.new(name: 'MaximumDaysSinceCreatedValue')
2354
+ MaximumDaysSinceDeprecatedValue = Shapes::IntegerShape.new(name: 'MaximumDaysSinceDeprecatedValue')
2341
2355
  MaximumEbsAttachments = Shapes::IntegerShape.new(name: 'MaximumEbsAttachments')
2342
2356
  MaximumEfaInterfaces = Shapes::IntegerShape.new(name: 'MaximumEfaInterfaces')
2343
2357
  MaximumEnaQueueCount = Shapes::IntegerShape.new(name: 'MaximumEnaQueueCount')
@@ -6405,6 +6419,12 @@ module Aws::EC2
6405
6419
  CreateVpnGatewayResult.add_member(:vpn_gateway, Shapes::ShapeRef.new(shape: VpnGateway, location_name: "vpnGateway"))
6406
6420
  CreateVpnGatewayResult.struct_class = Types::CreateVpnGatewayResult
6407
6421
 
6422
+ CreationDateCondition.add_member(:maximum_days_since_created, Shapes::ShapeRef.new(shape: MaximumDaysSinceCreatedValue, location_name: "maximumDaysSinceCreated"))
6423
+ CreationDateCondition.struct_class = Types::CreationDateCondition
6424
+
6425
+ CreationDateConditionRequest.add_member(:maximum_days_since_created, Shapes::ShapeRef.new(shape: MaximumDaysSinceCreatedValue, location_name: "MaximumDaysSinceCreated"))
6426
+ CreationDateConditionRequest.struct_class = Types::CreationDateConditionRequest
6427
+
6408
6428
  CreditSpecification.add_member(:cpu_credits, Shapes::ShapeRef.new(shape: String, location_name: "cpuCredits"))
6409
6429
  CreditSpecification.struct_class = Types::CreditSpecification
6410
6430
 
@@ -7057,6 +7077,12 @@ module Aws::EC2
7057
7077
  DeleteVpnGatewayRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
7058
7078
  DeleteVpnGatewayRequest.struct_class = Types::DeleteVpnGatewayRequest
7059
7079
 
7080
+ DeprecationTimeCondition.add_member(:maximum_days_since_deprecated, Shapes::ShapeRef.new(shape: MaximumDaysSinceDeprecatedValue, location_name: "maximumDaysSinceDeprecated"))
7081
+ DeprecationTimeCondition.struct_class = Types::DeprecationTimeCondition
7082
+
7083
+ DeprecationTimeConditionRequest.add_member(:maximum_days_since_deprecated, Shapes::ShapeRef.new(shape: MaximumDaysSinceDeprecatedValue, location_name: "MaximumDaysSinceDeprecated"))
7084
+ DeprecationTimeConditionRequest.struct_class = Types::DeprecationTimeConditionRequest
7085
+
7060
7086
  DeprovisionByoipCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
7061
7087
  DeprovisionByoipCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
7062
7088
  DeprovisionByoipCidrRequest.struct_class = Types::DeprovisionByoipCidrRequest
@@ -11046,11 +11072,19 @@ module Aws::EC2
11046
11072
  ImageAttribute.struct_class = Types::ImageAttribute
11047
11073
 
11048
11074
  ImageCriterion.add_member(:image_providers, Shapes::ShapeRef.new(shape: ImageProviderList, location_name: "imageProviderSet"))
11075
+ ImageCriterion.add_member(:marketplace_product_codes, Shapes::ShapeRef.new(shape: MarketplaceProductCodeList, location_name: "marketplaceProductCodeSet"))
11076
+ ImageCriterion.add_member(:image_names, Shapes::ShapeRef.new(shape: ImageNameList, location_name: "imageNameSet"))
11077
+ ImageCriterion.add_member(:deprecation_time_condition, Shapes::ShapeRef.new(shape: DeprecationTimeCondition, location_name: "deprecationTimeCondition"))
11078
+ ImageCriterion.add_member(:creation_date_condition, Shapes::ShapeRef.new(shape: CreationDateCondition, location_name: "creationDateCondition"))
11049
11079
  ImageCriterion.struct_class = Types::ImageCriterion
11050
11080
 
11051
11081
  ImageCriterionList.member = Shapes::ShapeRef.new(shape: ImageCriterion, location_name: "item")
11052
11082
 
11053
11083
  ImageCriterionRequest.add_member(:image_providers, Shapes::ShapeRef.new(shape: ImageProviderRequestList, location_name: "ImageProvider"))
11084
+ ImageCriterionRequest.add_member(:marketplace_product_codes, Shapes::ShapeRef.new(shape: MarketplaceProductCodeRequestList, location_name: "MarketplaceProductCode"))
11085
+ ImageCriterionRequest.add_member(:image_names, Shapes::ShapeRef.new(shape: ImageNameRequestList, location_name: "ImageName"))
11086
+ ImageCriterionRequest.add_member(:deprecation_time_condition, Shapes::ShapeRef.new(shape: DeprecationTimeConditionRequest, location_name: "DeprecationTimeCondition"))
11087
+ ImageCriterionRequest.add_member(:creation_date_condition, Shapes::ShapeRef.new(shape: CreationDateConditionRequest, location_name: "CreationDateCondition"))
11054
11088
  ImageCriterionRequest.struct_class = Types::ImageCriterionRequest
11055
11089
 
11056
11090
  ImageCriterionRequestList.member = Shapes::ShapeRef.new(shape: ImageCriterionRequest, location_name: "ImageCriterion")
@@ -11082,6 +11116,10 @@ module Aws::EC2
11082
11116
  ImageMetadata.add_member(:is_public, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPublic"))
11083
11117
  ImageMetadata.struct_class = Types::ImageMetadata
11084
11118
 
11119
+ ImageNameList.member = Shapes::ShapeRef.new(shape: ImageName, location_name: "item")
11120
+
11121
+ ImageNameRequestList.member = Shapes::ShapeRef.new(shape: ImageNameRequest, location_name: "item")
11122
+
11085
11123
  ImageProviderList.member = Shapes::ShapeRef.new(shape: ImageProvider, location_name: "item")
11086
11124
 
11087
11125
  ImageProviderRequestList.member = Shapes::ShapeRef.new(shape: ImageProviderRequest, location_name: "item")
@@ -12900,6 +12938,10 @@ module Aws::EC2
12900
12938
 
12901
12939
  ManagedPrefixListSet.member = Shapes::ShapeRef.new(shape: ManagedPrefixList, location_name: "item")
12902
12940
 
12941
+ MarketplaceProductCodeList.member = Shapes::ShapeRef.new(shape: MarketplaceProductCode, location_name: "item")
12942
+
12943
+ MarketplaceProductCodeRequestList.member = Shapes::ShapeRef.new(shape: MarketplaceProductCodeRequest, location_name: "item")
12944
+
12903
12945
  MediaAcceleratorInfo.add_member(:accelerators, Shapes::ShapeRef.new(shape: MediaDeviceInfoList, location_name: "accelerators"))
12904
12946
  MediaAcceleratorInfo.add_member(:total_media_memory_in_mi_b, Shapes::ShapeRef.new(shape: TotalMediaMemory, location_name: "totalMediaMemoryInMiB"))
12905
12947
  MediaAcceleratorInfo.struct_class = Types::MediaAcceleratorInfo
@@ -601,15 +601,16 @@ module Aws::EC2
601
601
  #
602
602
  # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
603
603
  # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
604
- # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
605
- # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
606
- # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
607
- # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
608
- # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
609
- # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
610
- # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
611
- # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
612
- # SQL Server Web`).
604
+ # with HA` \| `Red Hat Enterprise Linux with High Availability` \|
605
+ # `Red Hat Enterprise Linux with SQL Server Standard and HA` \| `Red
606
+ # Hat Enterprise Linux with SQL Server Enterprise and HA` \| `Red Hat
607
+ # Enterprise Linux with SQL Server Standard` \| `Red Hat Enterprise
608
+ # Linux with SQL Server Web` \| `Red Hat Enterprise Linux with SQL
609
+ # Server Enterprise` \| `SQL Server Enterprise` \| `SQL Server
610
+ # Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro` \|
611
+ # `Windows` \| `Windows BYOL` \| `Windows with SQL Server Enterprise`
612
+ # \| `Windows with SQL Server Standard` \| `Windows with SQL Server
613
+ # Web`).
613
614
  #
614
615
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
615
616
  #
@@ -2862,15 +2862,16 @@ module Aws::EC2
2862
2862
  #
2863
2863
  # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
2864
2864
  # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
2865
- # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
2866
- # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
2867
- # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
2868
- # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
2869
- # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
2870
- # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
2871
- # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
2872
- # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
2873
- # SQL Server Web`).
2865
+ # with HA` \| `Red Hat Enterprise Linux with High Availability` \|
2866
+ # `Red Hat Enterprise Linux with SQL Server Standard and HA` \| `Red
2867
+ # Hat Enterprise Linux with SQL Server Enterprise and HA` \| `Red Hat
2868
+ # Enterprise Linux with SQL Server Standard` \| `Red Hat Enterprise
2869
+ # Linux with SQL Server Web` \| `Red Hat Enterprise Linux with SQL
2870
+ # Server Enterprise` \| `SQL Server Enterprise` \| `SQL Server
2871
+ # Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro` \|
2872
+ # `Windows` \| `Windows BYOL` \| `Windows with SQL Server Enterprise`
2873
+ # \| `Windows with SQL Server Standard` \| `Windows with SQL Server
2874
+ # Web`).
2874
2875
  #
2875
2876
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
2876
2877
  #
@@ -117,6 +117,9 @@ module Aws::EC2
117
117
  #
118
118
  # * `EnableVgwRoutePropagation` - The route was propagated by route
119
119
  # propagation.
120
+ #
121
+ # * `Advertisement` - The route was created dynamically by Amazon VPC
122
+ # Route Server.
120
123
  # @return [String]
121
124
  def origin
122
125
  data[:origin]
@@ -431,10 +431,10 @@ module Aws::EC2
431
431
  # @option options [Boolean] :encrypted
432
432
  # To encrypt a copy of an unencrypted snapshot if encryption by default
433
433
  # is not enabled, enable encryption using this parameter. Otherwise,
434
- # omit this parameter. Encrypted snapshots are encrypted, even if you
435
- # omit this parameter and encryption by default is not enabled. You
436
- # cannot set this parameter to false. For more information, see [Amazon
437
- # EBS encryption][1] in the *Amazon EBS User Guide*.
434
+ # omit this parameter. Copies of encrypted snapshots are encrypted, even
435
+ # if you omit this parameter and encryption by default is not enabled.
436
+ # You cannot set this parameter to false. For more information, see
437
+ # [Amazon EBS encryption][1] in the *Amazon EBS User Guide*.
438
438
  #
439
439
  #
440
440
  #
@@ -1537,15 +1537,16 @@ module Aws::EC2
1537
1537
  #
1538
1538
  # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
1539
1539
  # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
1540
- # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
1541
- # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
1542
- # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
1543
- # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
1544
- # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
1545
- # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
1546
- # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
1547
- # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
1548
- # SQL Server Web`).
1540
+ # with HA` \| `Red Hat Enterprise Linux with High Availability` \|
1541
+ # `Red Hat Enterprise Linux with SQL Server Standard and HA` \| `Red
1542
+ # Hat Enterprise Linux with SQL Server Enterprise and HA` \| `Red Hat
1543
+ # Enterprise Linux with SQL Server Standard` \| `Red Hat Enterprise
1544
+ # Linux with SQL Server Web` \| `Red Hat Enterprise Linux with SQL
1545
+ # Server Enterprise` \| `SQL Server Enterprise` \| `SQL Server
1546
+ # Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro` \|
1547
+ # `Windows` \| `Windows BYOL` \| `Windows with SQL Server Enterprise`
1548
+ # \| `Windows with SQL Server Standard` \| `Windows with SQL Server
1549
+ # Web`).
1549
1550
  #
1550
1551
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
1551
1552
  #
@@ -7707,9 +7707,9 @@ module Aws::EC2
7707
7707
  # @!attribute [rw] encrypted
7708
7708
  # To encrypt a copy of an unencrypted snapshot if encryption by
7709
7709
  # default is not enabled, enable encryption using this parameter.
7710
- # Otherwise, omit this parameter. Encrypted snapshots are encrypted,
7711
- # even if you omit this parameter and encryption by default is not
7712
- # enabled. You cannot set this parameter to false. For more
7710
+ # Otherwise, omit this parameter. Copies of encrypted snapshots are
7711
+ # encrypted, even if you omit this parameter and encryption by default
7712
+ # is not enabled. You cannot set this parameter to false. For more
7713
7713
  # information, see [Amazon EBS encryption][1] in the *Amazon EBS User
7714
7714
  # Guide*.
7715
7715
  #
@@ -15796,6 +15796,38 @@ module Aws::EC2
15796
15796
  include Aws::Structure
15797
15797
  end
15798
15798
 
15799
+ # The maximum age for allowed images.
15800
+ #
15801
+ # @!attribute [rw] maximum_days_since_created
15802
+ # The maximum number of days that have elapsed since the image was
15803
+ # created. For example, a value of `300` allows images that were
15804
+ # created within the last 300 days.
15805
+ # @return [Integer]
15806
+ #
15807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreationDateCondition AWS API Documentation
15808
+ #
15809
+ class CreationDateCondition < Struct.new(
15810
+ :maximum_days_since_created)
15811
+ SENSITIVE = []
15812
+ include Aws::Structure
15813
+ end
15814
+
15815
+ # The maximum age for allowed images.
15816
+ #
15817
+ # @!attribute [rw] maximum_days_since_created
15818
+ # The maximum number of days that have elapsed since the image was
15819
+ # created. For example, a value of `300` allows images that were
15820
+ # created within the last 300 days.
15821
+ # @return [Integer]
15822
+ #
15823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreationDateConditionRequest AWS API Documentation
15824
+ #
15825
+ class CreationDateConditionRequest < Struct.new(
15826
+ :maximum_days_since_created)
15827
+ SENSITIVE = []
15828
+ include Aws::Structure
15829
+ end
15830
+
15799
15831
  # Describes the credit option for CPU usage of a T instance.
15800
15832
  #
15801
15833
  # @!attribute [rw] cpu_credits
@@ -18941,6 +18973,36 @@ module Aws::EC2
18941
18973
  include Aws::Structure
18942
18974
  end
18943
18975
 
18976
+ # The maximum period since deprecation for allowed images.
18977
+ #
18978
+ # @!attribute [rw] maximum_days_since_deprecated
18979
+ # The maximum number of days that have elapsed since the image was
18980
+ # deprecated. When set to `0`, no deprecated images are allowed.
18981
+ # @return [Integer]
18982
+ #
18983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprecationTimeCondition AWS API Documentation
18984
+ #
18985
+ class DeprecationTimeCondition < Struct.new(
18986
+ :maximum_days_since_deprecated)
18987
+ SENSITIVE = []
18988
+ include Aws::Structure
18989
+ end
18990
+
18991
+ # The maximum period since deprecation for allowed images.
18992
+ #
18993
+ # @!attribute [rw] maximum_days_since_deprecated
18994
+ # The maximum number of days that have elapsed since the image was
18995
+ # deprecated. Set to `0` to exclude all deprecated images.
18996
+ # @return [Integer]
18997
+ #
18998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprecationTimeConditionRequest AWS API Documentation
18999
+ #
19000
+ class DeprecationTimeConditionRequest < Struct.new(
19001
+ :maximum_days_since_deprecated)
19002
+ SENSITIVE = []
19003
+ include Aws::Structure
19004
+ end
19005
+
18944
19006
  # @!attribute [rw] cidr
18945
19007
  # The address range, in CIDR notation. The prefix must be the same
18946
19008
  # prefix that you specified when you provisioned the address range.
@@ -22667,7 +22729,7 @@ module Aws::EC2
22667
22729
  #
22668
22730
  #
22669
22731
  #
22670
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ami-references-works.html
22732
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-ami-references.html#how-ami-references-works
22671
22733
  # @return [Boolean]
22672
22734
  #
22673
22735
  # @!attribute [rw] resource_types
@@ -24554,15 +24616,16 @@ module Aws::EC2
24554
24616
  #
24555
24617
  # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
24556
24618
  # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
24557
- # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
24558
- # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and
24559
- # HA` \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red
24560
- # Hat Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise
24561
- # Linux with SQL Server Enterprise` \| `SQL Server Enterprise` \|
24562
- # `SQL Server Standard` \| `SQL Server Web` \| `SUSE Linux` \|
24563
- # `Ubuntu Pro` \| `Windows` \| `Windows BYOL` \| `Windows with SQL
24564
- # Server Enterprise` \| `Windows with SQL Server Standard` \|
24565
- # `Windows with SQL Server Web`).
24619
+ # with HA` \| `Red Hat Enterprise Linux with High Availability` \|
24620
+ # `Red Hat Enterprise Linux with SQL Server Standard and HA` \| `Red
24621
+ # Hat Enterprise Linux with SQL Server Enterprise and HA` \| `Red
24622
+ # Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
24623
+ # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
24624
+ # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
24625
+ # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu
24626
+ # Pro` \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
24627
+ # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
24628
+ # SQL Server Web`).
24566
24629
  #
24567
24630
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
24568
24631
  #
@@ -43722,87 +43785,181 @@ module Aws::EC2
43722
43785
  include Aws::Structure
43723
43786
  end
43724
43787
 
43725
- # The list of criteria that are evaluated to determine whch AMIs are
43726
- # discoverable and usable in the account in the specified Amazon Web
43727
- # Services Region. Currently, the only criteria that can be specified
43728
- # are AMI providers.
43788
+ # The criteria that are evaluated to determine which AMIs are
43789
+ # discoverable and usable in your account for the specified Amazon Web
43790
+ # Services Region.
43729
43791
  #
43730
- # Up to 10 `imageCriteria` objects can be specified, and up to a total
43731
- # of 200 values for all `imageProviders`. For more information, see
43732
- # [JSON configuration for the Allowed AMIs criteria][1] in the *Amazon
43792
+ # For more information, see [How Allowed AMIs works][1] in the *Amazon
43733
43793
  # EC2 User Guide*.
43734
43794
  #
43735
43795
  #
43736
43796
  #
43737
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-allowed-amis.html#allowed-amis-json-configuration
43797
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-allowed-amis.html#how-allowed-amis-works
43738
43798
  #
43739
43799
  # @!attribute [rw] image_providers
43740
- # A list of AMI providers whose AMIs are discoverable and useable in
43741
- # the account. Up to a total of 200 values can be specified.
43800
+ # The image providers whose images are allowed.
43742
43801
  #
43743
43802
  # Possible values:
43744
43803
  #
43745
- # `amazon`: Allow AMIs created by Amazon Web Services.
43804
+ # * `amazon`: Allow AMIs created by Amazon or verified providers.
43805
+ #
43806
+ # * `aws-marketplace`: Allow AMIs created by verified providers in the
43807
+ # Amazon Web Services Marketplace.
43808
+ #
43809
+ # * `aws-backup-vault`: Allow AMIs created by Amazon Web Services
43810
+ # Backup.
43811
+ #
43812
+ # * 12-digit account ID: Allow AMIs created by this account. One or
43813
+ # more account IDs can be specified.
43814
+ #
43815
+ # * `none`: Allow AMIs created by your own account only.
43816
+ #
43817
+ # Maximum: 200 values
43818
+ # @return [Array<String>]
43819
+ #
43820
+ # @!attribute [rw] marketplace_product_codes
43821
+ # The Amazon Web Services Marketplace product codes for allowed
43822
+ # images.
43823
+ #
43824
+ # Length: 1-25 characters
43825
+ #
43826
+ # Valid characters: Letters (`A–Z, a–z`) and numbers (`0–9`)
43827
+ #
43828
+ # Maximum: 50 values
43829
+ # @return [Array<String>]
43830
+ #
43831
+ # @!attribute [rw] image_names
43832
+ # The names of allowed images. Names can include wildcards (`?` and
43833
+ # `*`).
43834
+ #
43835
+ # Length: 1–128 characters. With `?`, the minimum is 3 characters.
43836
+ #
43837
+ # Valid characters:
43838
+ #
43839
+ # * Letters: `A–Z, a–z`
43746
43840
  #
43747
- # `aws-marketplace`: Allow AMIs created by verified providers in the
43748
- # Amazon Web Services Marketplace.
43841
+ # * Numbers: `0–9`
43749
43842
  #
43750
- # `aws-backup-vault`: Allow AMIs created by Amazon Web Services
43751
- # Backup.
43843
+ # * Special characters: `( ) [ ] . / - ' @ _ * ?`
43752
43844
  #
43753
- # 12-digit account ID: Allow AMIs created by this account. One or more
43754
- # account IDs can be specified.
43845
+ # * Spaces
43755
43846
  #
43756
- # `none`: Allow AMIs created by your own account only.
43847
+ # Maximum: 50 values
43757
43848
  # @return [Array<String>]
43758
43849
  #
43850
+ # @!attribute [rw] deprecation_time_condition
43851
+ # The maximum period since deprecation for allowed images.
43852
+ # @return [Types::DeprecationTimeCondition]
43853
+ #
43854
+ # @!attribute [rw] creation_date_condition
43855
+ # The maximum age for allowed images.
43856
+ # @return [Types::CreationDateCondition]
43857
+ #
43759
43858
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageCriterion AWS API Documentation
43760
43859
  #
43761
43860
  class ImageCriterion < Struct.new(
43762
- :image_providers)
43861
+ :image_providers,
43862
+ :marketplace_product_codes,
43863
+ :image_names,
43864
+ :deprecation_time_condition,
43865
+ :creation_date_condition)
43763
43866
  SENSITIVE = []
43764
43867
  include Aws::Structure
43765
43868
  end
43766
43869
 
43767
- # The list of criteria that are evaluated to determine whch AMIs are
43768
- # discoverable and usable in the account in the specified Amazon Web
43769
- # Services Region. Currently, the only criteria that can be specified
43770
- # are AMI providers.
43870
+ # The criteria that are evaluated to determine which AMIs are
43871
+ # discoverable and usable in your account for the specified Amazon Web
43872
+ # Services Region.
43873
+ #
43874
+ # The `ImageCriteria` can include up to:
43875
+ #
43876
+ # * 10 `ImageCriterion`
43877
+ #
43878
+ # ^
43879
+ #
43880
+ # Each `ImageCriterion` can include up to:
43881
+ #
43882
+ # * 200 values for `ImageProviders`
43883
+ #
43884
+ # * 50 values for `ImageNames`
43885
+ #
43886
+ # * 50 values for `MarketplaceProductCodes`
43771
43887
  #
43772
- # Up to 10 `imageCriteria` objects can be specified, and up to a total
43773
- # of 200 values for all `imageProviders`. For more information, see
43774
- # [JSON configuration for the Allowed AMIs criteria][1] in the *Amazon
43888
+ # For more information, see [How Allowed AMIs works][1] in the *Amazon
43775
43889
  # EC2 User Guide*.
43776
43890
  #
43777
43891
  #
43778
43892
  #
43779
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-allowed-amis.html#allowed-amis-json-configuration
43893
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-allowed-amis.html#how-allowed-amis-works
43780
43894
  #
43781
43895
  # @!attribute [rw] image_providers
43782
- # A list of image providers whose AMIs are discoverable and useable in
43783
- # the account. Up to a total of 200 values can be specified.
43896
+ # The image providers whose images are allowed.
43784
43897
  #
43785
43898
  # Possible values:
43786
43899
  #
43787
- # `amazon`: Allow AMIs created by Amazon Web Services.
43900
+ # * `amazon`: Allow AMIs created by Amazon or verified providers.
43788
43901
  #
43789
- # `aws-marketplace`: Allow AMIs created by verified providers in the
43790
- # Amazon Web Services Marketplace.
43902
+ # * `aws-marketplace`: Allow AMIs created by verified providers in the
43903
+ # Amazon Web Services Marketplace.
43791
43904
  #
43792
- # `aws-backup-vault`: Allow AMIs created by Amazon Web Services
43793
- # Backup.
43905
+ # * `aws-backup-vault`: Allow AMIs created by Amazon Web Services
43906
+ # Backup.
43794
43907
  #
43795
- # 12-digit account ID: Allow AMIs created by this account. One or more
43796
- # account IDs can be specified.
43908
+ # * 12-digit account ID: Allow AMIs created by the specified accounts.
43909
+ # One or more account IDs can be specified.
43797
43910
  #
43798
- # `none`: Allow AMIs created by your own account only. When `none` is
43799
- # specified, no other values can be specified.
43911
+ # * `none`: Allow AMIs created by your own account only. When `none`
43912
+ # is specified, no other values can be specified.
43913
+ #
43914
+ # Maximum: 200 values
43915
+ # @return [Array<String>]
43916
+ #
43917
+ # @!attribute [rw] marketplace_product_codes
43918
+ # The Amazon Web Services Marketplace product codes for allowed
43919
+ # images.
43920
+ #
43921
+ # Length: 1-25 characters
43922
+ #
43923
+ # Valid characters: Letters (`A–Z, a–z`) and numbers (`0–9`)
43924
+ #
43925
+ # Maximum: 50 values
43926
+ # @return [Array<String>]
43927
+ #
43928
+ # @!attribute [rw] image_names
43929
+ # The names of allowed images. Names can include wildcards (`?` and
43930
+ # `*`).
43931
+ #
43932
+ # Length: 1–128 characters. With `?`, the minimum is 3 characters.
43933
+ #
43934
+ # Valid characters:
43935
+ #
43936
+ # * Letters: `A–Z, a–z`
43937
+ #
43938
+ # * Numbers: `0–9`
43939
+ #
43940
+ # * Special characters: `( ) [ ] . / - ' @ _ * ?`
43941
+ #
43942
+ # * Spaces
43943
+ #
43944
+ # Maximum: 50 values
43800
43945
  # @return [Array<String>]
43801
43946
  #
43947
+ # @!attribute [rw] deprecation_time_condition
43948
+ # The maximum period since deprecation for allowed images.
43949
+ # @return [Types::DeprecationTimeConditionRequest]
43950
+ #
43951
+ # @!attribute [rw] creation_date_condition
43952
+ # The maximum age for allowed images.
43953
+ # @return [Types::CreationDateConditionRequest]
43954
+ #
43802
43955
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageCriterionRequest AWS API Documentation
43803
43956
  #
43804
43957
  class ImageCriterionRequest < Struct.new(
43805
- :image_providers)
43958
+ :image_providers,
43959
+ :marketplace_product_codes,
43960
+ :image_names,
43961
+ :deprecation_time_condition,
43962
+ :creation_date_condition)
43806
43963
  SENSITIVE = []
43807
43964
  include Aws::Structure
43808
43965
  end
@@ -67716,6 +67873,9 @@ module Aws::EC2
67716
67873
  #
67717
67874
  # * `EnableVgwRoutePropagation` - The route was propagated by route
67718
67875
  # propagation.
67876
+ #
67877
+ # * `Advertisement` - The route was created dynamically by Amazon VPC
67878
+ # Route Server.
67719
67879
  # @return [String]
67720
67880
  #
67721
67881
  # @!attribute [rw] state
@@ -1373,15 +1373,16 @@ module Aws::EC2
1373
1373
  #
1374
1374
  # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
1375
1375
  # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
1376
- # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
1377
- # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
1378
- # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
1379
- # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
1380
- # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
1381
- # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
1382
- # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
1383
- # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
1384
- # SQL Server Web`).
1376
+ # with HA` \| `Red Hat Enterprise Linux with High Availability` \|
1377
+ # `Red Hat Enterprise Linux with SQL Server Standard and HA` \| `Red
1378
+ # Hat Enterprise Linux with SQL Server Enterprise and HA` \| `Red Hat
1379
+ # Enterprise Linux with SQL Server Standard` \| `Red Hat Enterprise
1380
+ # Linux with SQL Server Web` \| `Red Hat Enterprise Linux with SQL
1381
+ # Server Enterprise` \| `SQL Server Enterprise` \| `SQL Server
1382
+ # Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro` \|
1383
+ # `Windows` \| `Windows BYOL` \| `Windows with SQL Server Enterprise`
1384
+ # \| `Windows with SQL Server Standard` \| `Windows with SQL Server
1385
+ # Web`).
1385
1386
  #
1386
1387
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
1387
1388
  #
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.557.0'
81
+ GEM_VERSION = '1.558.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -12987,7 +12987,15 @@ module Aws
12987
12987
  def replace_image_criteria_in_allowed_images_settings: (
12988
12988
  ?image_criteria: Array[
12989
12989
  {
12990
- image_providers: Array[::String]?
12990
+ image_providers: Array[::String]?,
12991
+ marketplace_product_codes: Array[::String]?,
12992
+ image_names: Array[::String]?,
12993
+ deprecation_time_condition: {
12994
+ maximum_days_since_deprecated: ::Integer?
12995
+ }?,
12996
+ creation_date_condition: {
12997
+ maximum_days_since_created: ::Integer?
12998
+ }?
12991
12999
  },
12992
13000
  ],
12993
13001
  ?dry_run: bool
data/sig/types.rbs CHANGED
@@ -3457,6 +3457,16 @@ module Aws::EC2
3457
3457
  SENSITIVE: []
3458
3458
  end
3459
3459
 
3460
+ class CreationDateCondition
3461
+ attr_accessor maximum_days_since_created: ::Integer
3462
+ SENSITIVE: []
3463
+ end
3464
+
3465
+ class CreationDateConditionRequest
3466
+ attr_accessor maximum_days_since_created: ::Integer
3467
+ SENSITIVE: []
3468
+ end
3469
+
3460
3470
  class CreditSpecification
3461
3471
  attr_accessor cpu_credits: ::String
3462
3472
  SENSITIVE: []
@@ -4403,6 +4413,16 @@ module Aws::EC2
4403
4413
  SENSITIVE: []
4404
4414
  end
4405
4415
 
4416
+ class DeprecationTimeCondition
4417
+ attr_accessor maximum_days_since_deprecated: ::Integer
4418
+ SENSITIVE: []
4419
+ end
4420
+
4421
+ class DeprecationTimeConditionRequest
4422
+ attr_accessor maximum_days_since_deprecated: ::Integer
4423
+ SENSITIVE: []
4424
+ end
4425
+
4406
4426
  class DeprovisionByoipCidrRequest
4407
4427
  attr_accessor cidr: ::String
4408
4428
  attr_accessor dry_run: bool
@@ -9655,11 +9675,19 @@ module Aws::EC2
9655
9675
 
9656
9676
  class ImageCriterion
9657
9677
  attr_accessor image_providers: ::Array[::String]
9678
+ attr_accessor marketplace_product_codes: ::Array[::String]
9679
+ attr_accessor image_names: ::Array[::String]
9680
+ attr_accessor deprecation_time_condition: Types::DeprecationTimeCondition
9681
+ attr_accessor creation_date_condition: Types::CreationDateCondition
9658
9682
  SENSITIVE: []
9659
9683
  end
9660
9684
 
9661
9685
  class ImageCriterionRequest
9662
9686
  attr_accessor image_providers: ::Array[::String]
9687
+ attr_accessor marketplace_product_codes: ::Array[::String]
9688
+ attr_accessor image_names: ::Array[::String]
9689
+ attr_accessor deprecation_time_condition: Types::DeprecationTimeConditionRequest
9690
+ attr_accessor creation_date_condition: Types::CreationDateConditionRequest
9663
9691
  SENSITIVE: []
9664
9692
  end
9665
9693
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.557.0
4
+ version: 1.558.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services