aws-sdk-ec2 1.624.0 → 1.625.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: 155bd892ae13a7841d99b7fe728eb05c5ab6e315da611a5d969745d8a9977b96
4
- data.tar.gz: 85a947a839322269c7f040a6ee51b0bb37d977989ced2c8ed8eaaa6729805d23
3
+ metadata.gz: 6867db1c50af7b0857132f507020ae6f98052f5d6d36d180e073ce37b04f5b21
4
+ data.tar.gz: 8581cb5bcde7850245f6823c1e2aca5758751f1ff19e5ae25f53bde4e8c67ad8
5
5
  SHA512:
6
- metadata.gz: ce28421481e33d3a5c05ec7e4631f79b9a8e2ef1dd7a65998d397fc8ff565e7a210a62c5bd84b0f23ca9eb0ae2a029fd6e47edba5e275c099cec2b0d6d84d72e
7
- data.tar.gz: 3857ad5e9a1ed243abb204b04b518b622b44155e96e16ed5300ab87dc903f899582cc30f10b712b4d21fc99e689f8bd0225e4a062e6e7c07be53330d2ecd2813
6
+ metadata.gz: 46ab18a4b5aaede3d96a4951de50e791f047d5f40e2412fc7a8eeda01eea19d2c7eb9519f3b7e8178d0f12ab1871263943c228ca24daa5e17750148ab5cbc72f
7
+ data.tar.gz: 9d680bcf86f4643f7e4d16b9c071c30d33cd94c02a5688947d4b1b19847649306f5f01758ac5153d3ba208206fcacee4f1dcbfd7b32b772ec9e088c469d30598
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.625.0 (2026-06-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for AMI Watermark and Allowed AMIs integration
8
+
4
9
  1.624.0 (2026-06-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.624.0
1
+ 1.625.0
@@ -3204,8 +3204,7 @@ module Aws::EC2
3204
3204
 
3205
3205
  # Attaches a watermark to a non-public AMI. The watermark is a
3206
3206
  # structured identifier that automatically propagates to all derivative
3207
- # images created through [CreateImage][1], [CopyImage][2], and
3208
- # [CreateRestoreImageTask][3].
3207
+ # images created through [CreateImage][1], and [CopyImage][2].
3209
3208
  #
3210
3209
  # Only the AMI owner can attach watermarks. Watermarks cannot be added
3211
3210
  # to public AMIs.
@@ -3214,7 +3213,6 @@ module Aws::EC2
3214
3213
  #
3215
3214
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html
3216
3215
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CopyImage.html
3217
- # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateRestoreImageTask.html
3218
3216
  #
3219
3217
  # @option params [required, String] :image_id
3220
3218
  # The ID of the AMI.
@@ -4378,29 +4376,26 @@ module Aws::EC2
4378
4376
  #
4379
4377
  # * `assessing`
4380
4378
  #
4381
- # * `scheduled` — requires a cancellation quote. Use
4382
- # `CreateCapacityReservationCancellationQuote` to generate a quote,
4383
- # then pass the quote ID with `ApplyCancellationCharges` set to
4384
- # `commitment-wind-down`. The cancellation charge depends on how close
4385
- # the reservation is to its start date.
4379
+ # * `scheduled`
4386
4380
  #
4387
4381
  # * `active` and there is no commitment duration or the commitment
4388
4382
  # duration has elapsed.
4389
4383
  #
4390
- # * `active` during the commitment duration requires a cancellation
4391
- # quote. Use `CreateCapacityReservationCancellationQuote` to generate
4392
- # a quote, then pass the quote ID with `ApplyCancellationCharges` set
4393
- # to `commitment-wind-down`. The Capacity Reservation transitions to
4394
- # `cancelling` while charges are applied.
4395
- #
4396
- # * `delayed` — the commitment duration is waived, so no cancellation
4397
- # charge applies.
4384
+ # * `active` during the commitment duration, if you provide a
4385
+ # cancellation quote ID and accept the cancellation charges. Use
4386
+ # `CreateCapacityReservationCancellationQuote` to generate a quote.
4387
+ # The Capacity Reservation transitions to `cancelling` while charges
4388
+ # are applied.
4398
4389
  #
4399
4390
  # <note markdown="1"> You can't modify or cancel a Capacity Block. For more information,
4400
4391
  # see [Capacity Blocks for ML][1].
4401
4392
  #
4402
4393
  # </note>
4403
4394
  #
4395
+ # If a future-dated Capacity Reservation enters the `delayed` state, the
4396
+ # commitment duration is waived, and you can cancel it as soon as it
4397
+ # enters the `active` state.
4398
+ #
4404
4399
  # Instances running in the reserved capacity continue running until you
4405
4400
  # stop them. Stopped instances that target the Capacity Reservation can
4406
4401
  # no longer launch. Modify these instances to either target a different
@@ -51782,6 +51777,11 @@ module Aws::EC2
51782
51777
  # resp.image_criteria[0].image_names[0] #=> String
51783
51778
  # resp.image_criteria[0].deprecation_time_condition.maximum_days_since_deprecated #=> Integer
51784
51779
  # resp.image_criteria[0].creation_date_condition.maximum_days_since_created #=> Integer
51780
+ # resp.image_criteria[0].image_watermarks #=> Array
51781
+ # resp.image_criteria[0].image_watermarks[0].watermark_key #=> String
51782
+ # resp.image_criteria[0].image_watermarks[0].source_image_region #=> String
51783
+ # resp.image_criteria[0].image_watermarks[0].maximum_days_since_source_image_created #=> Integer
51784
+ # resp.image_criteria[0].image_watermarks[0].maximum_days_since_watermark_created #=> Integer
51785
51785
  # resp.managed_by #=> String, one of "account", "declarative-policy"
51786
51786
  #
51787
51787
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAllowedImagesSettings AWS API Documentation
@@ -67736,6 +67736,12 @@ module Aws::EC2
67736
67736
 
67737
67737
  # Sets or replaces the criteria for Allowed AMIs.
67738
67738
  #
67739
+ # The `ImageCriteria` can include up to:
67740
+ #
67741
+ # * 10 `ImageCriterion`
67742
+ #
67743
+ # ^
67744
+ #
67739
67745
  # <note markdown="1"> The Allowed AMIs feature does not restrict the AMIs owned by your
67740
67746
  # account. Regardless of the criteria you set, the AMIs created by your
67741
67747
  # account will always be discoverable and usable by users in your
@@ -67779,6 +67785,14 @@ module Aws::EC2
67779
67785
  # creation_date_condition: {
67780
67786
  # maximum_days_since_created: 1,
67781
67787
  # },
67788
+ # image_watermarks: [
67789
+ # {
67790
+ # watermark_key: "String",
67791
+ # source_image_region: "String",
67792
+ # maximum_days_since_source_image_created: 1,
67793
+ # maximum_days_since_watermark_created: 1,
67794
+ # },
67795
+ # ],
67782
67796
  # },
67783
67797
  # ],
67784
67798
  # dry_run: false,
@@ -74087,7 +74101,7 @@ module Aws::EC2
74087
74101
  tracer: tracer
74088
74102
  )
74089
74103
  context[:gem_name] = 'aws-sdk-ec2'
74090
- context[:gem_version] = '1.624.0'
74104
+ context[:gem_version] = '1.625.0'
74091
74105
  Seahorse::Client::Request.new(handlers, context)
74092
74106
  end
74093
74107
 
@@ -2073,6 +2073,10 @@ module Aws::EC2
2073
2073
  ImageUsageResourceTypeRequest = Shapes::StructureShape.new(name: 'ImageUsageResourceTypeRequest')
2074
2074
  ImageUsageResourceTypeRequestList = Shapes::ListShape.new(name: 'ImageUsageResourceTypeRequestList')
2075
2075
  ImageWatermark = Shapes::StructureShape.new(name: 'ImageWatermark')
2076
+ ImageWatermarkFilterRequest = Shapes::StructureShape.new(name: 'ImageWatermarkFilterRequest')
2077
+ ImageWatermarkFilterRequestList = Shapes::ListShape.new(name: 'ImageWatermarkFilterRequestList')
2078
+ ImageWatermarkFilterResponse = Shapes::StructureShape.new(name: 'ImageWatermarkFilterResponse')
2079
+ ImageWatermarkFilterResponseList = Shapes::ListShape.new(name: 'ImageWatermarkFilterResponseList')
2076
2080
  ImageWatermarkList = Shapes::ListShape.new(name: 'ImageWatermarkList')
2077
2081
  ImageWatermarkNameRequest = Shapes::StringShape.new(name: 'ImageWatermarkNameRequest')
2078
2082
  ImdsSupportValues = Shapes::StringShape.new(name: 'ImdsSupportValues')
@@ -12348,6 +12352,7 @@ module Aws::EC2
12348
12352
  ImageCriterion.add_member(:image_names, Shapes::ShapeRef.new(shape: ImageNameList, location_name: "imageNameSet"))
12349
12353
  ImageCriterion.add_member(:deprecation_time_condition, Shapes::ShapeRef.new(shape: DeprecationTimeCondition, location_name: "deprecationTimeCondition"))
12350
12354
  ImageCriterion.add_member(:creation_date_condition, Shapes::ShapeRef.new(shape: CreationDateCondition, location_name: "creationDateCondition"))
12355
+ ImageCriterion.add_member(:image_watermarks, Shapes::ShapeRef.new(shape: ImageWatermarkFilterResponseList, location_name: "imageWatermarkSet"))
12351
12356
  ImageCriterion.struct_class = Types::ImageCriterion
12352
12357
 
12353
12358
  ImageCriterionList.member = Shapes::ShapeRef.new(shape: ImageCriterion, location_name: "item")
@@ -12357,6 +12362,7 @@ module Aws::EC2
12357
12362
  ImageCriterionRequest.add_member(:image_names, Shapes::ShapeRef.new(shape: ImageNameCriteriaRequestList, location_name: "ImageName"))
12358
12363
  ImageCriterionRequest.add_member(:deprecation_time_condition, Shapes::ShapeRef.new(shape: DeprecationTimeConditionRequest, location_name: "DeprecationTimeCondition"))
12359
12364
  ImageCriterionRequest.add_member(:creation_date_condition, Shapes::ShapeRef.new(shape: CreationDateConditionRequest, location_name: "CreationDateCondition"))
12365
+ ImageCriterionRequest.add_member(:image_watermarks, Shapes::ShapeRef.new(shape: ImageWatermarkFilterRequestList, location_name: "ImageWatermark"))
12360
12366
  ImageCriterionRequest.struct_class = Types::ImageCriterionRequest
12361
12367
 
12362
12368
  ImageCriterionRequestList.member = Shapes::ShapeRef.new(shape: ImageCriterionRequest, location_name: "ImageCriterion")
@@ -12473,6 +12479,22 @@ module Aws::EC2
12473
12479
  ImageWatermark.add_member(:watermark_creation_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "watermarkCreationTime"))
12474
12480
  ImageWatermark.struct_class = Types::ImageWatermark
12475
12481
 
12482
+ ImageWatermarkFilterRequest.add_member(:watermark_key, Shapes::ShapeRef.new(shape: String, location_name: "WatermarkKey"))
12483
+ ImageWatermarkFilterRequest.add_member(:source_image_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceImageRegion"))
12484
+ ImageWatermarkFilterRequest.add_member(:maximum_days_since_source_image_created, Shapes::ShapeRef.new(shape: Integer, location_name: "MaximumDaysSinceSourceImageCreated"))
12485
+ ImageWatermarkFilterRequest.add_member(:maximum_days_since_watermark_created, Shapes::ShapeRef.new(shape: Integer, location_name: "MaximumDaysSinceWatermarkCreated"))
12486
+ ImageWatermarkFilterRequest.struct_class = Types::ImageWatermarkFilterRequest
12487
+
12488
+ ImageWatermarkFilterRequestList.member = Shapes::ShapeRef.new(shape: ImageWatermarkFilterRequest, location_name: "item")
12489
+
12490
+ ImageWatermarkFilterResponse.add_member(:watermark_key, Shapes::ShapeRef.new(shape: String, location_name: "watermarkKey"))
12491
+ ImageWatermarkFilterResponse.add_member(:source_image_region, Shapes::ShapeRef.new(shape: String, location_name: "sourceImageRegion"))
12492
+ ImageWatermarkFilterResponse.add_member(:maximum_days_since_source_image_created, Shapes::ShapeRef.new(shape: Integer, location_name: "maximumDaysSinceSourceImageCreated"))
12493
+ ImageWatermarkFilterResponse.add_member(:maximum_days_since_watermark_created, Shapes::ShapeRef.new(shape: Integer, location_name: "maximumDaysSinceWatermarkCreated"))
12494
+ ImageWatermarkFilterResponse.struct_class = Types::ImageWatermarkFilterResponse
12495
+
12496
+ ImageWatermarkFilterResponseList.member = Shapes::ShapeRef.new(shape: ImageWatermarkFilterResponse, location_name: "item")
12497
+
12476
12498
  ImageWatermarkList.member = Shapes::ShapeRef.new(shape: ImageWatermark, location_name: "item")
12477
12499
 
12478
12500
  ImportClientVpnClientCertificateRevocationListRequest.add_member(:client_vpn_endpoint_id, Shapes::ShapeRef.new(shape: ClientVpnEndpointId, required: true, location_name: "ClientVpnEndpointId"))
@@ -48873,6 +48873,16 @@ module Aws::EC2
48873
48873
  # The maximum age for allowed images.
48874
48874
  # @return [Types::CreationDateCondition]
48875
48875
  #
48876
+ # @!attribute [rw] image_watermarks
48877
+ # The watermark criteria that an AMI must match to be allowed. An AMI
48878
+ # is allowed if it carries at least one watermark that satisfies an
48879
+ # ImageWatermarkFilter. A watermark satisfies a filter when all
48880
+ # specified fields in the ImageWatermarkFilter match the corresponding
48881
+ # values on the watermark of the AMI.
48882
+ #
48883
+ # Maximum: 50 values
48884
+ # @return [Array<Types::ImageWatermarkFilterResponse>]
48885
+ #
48876
48886
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageCriterion AWS API Documentation
48877
48887
  #
48878
48888
  class ImageCriterion < Struct.new(
@@ -48880,7 +48890,8 @@ module Aws::EC2
48880
48890
  :marketplace_product_codes,
48881
48891
  :image_names,
48882
48892
  :deprecation_time_condition,
48883
- :creation_date_condition)
48893
+ :creation_date_condition,
48894
+ :image_watermarks)
48884
48895
  SENSITIVE = []
48885
48896
  include Aws::Structure
48886
48897
  end
@@ -48903,6 +48914,8 @@ module Aws::EC2
48903
48914
  #
48904
48915
  # * 50 values for `MarketplaceProductCodes`
48905
48916
  #
48917
+ # * 50 values for `ImageWatermarks`
48918
+ #
48906
48919
  # For more information, see [How Allowed AMIs works][1] in the *Amazon
48907
48920
  # EC2 User Guide*.
48908
48921
  #
@@ -48970,6 +48983,16 @@ module Aws::EC2
48970
48983
  # The maximum age for allowed images.
48971
48984
  # @return [Types::CreationDateConditionRequest]
48972
48985
  #
48986
+ # @!attribute [rw] image_watermarks
48987
+ # The watermark criteria that an AMI must match to be allowed. An AMI
48988
+ # is allowed if it carries at least one watermark that satisfies an
48989
+ # ImageWatermarkFilter. A watermark satisfies a filter when all
48990
+ # specified fields in the ImageWatermarkFilter match the corresponding
48991
+ # values on the watermark of the AMI.
48992
+ #
48993
+ # Maximum: 50 values
48994
+ # @return [Array<Types::ImageWatermarkFilterRequest>]
48995
+ #
48973
48996
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageCriterionRequest AWS API Documentation
48974
48997
  #
48975
48998
  class ImageCriterionRequest < Struct.new(
@@ -48977,7 +49000,8 @@ module Aws::EC2
48977
49000
  :marketplace_product_codes,
48978
49001
  :image_names,
48979
49002
  :deprecation_time_condition,
48980
- :creation_date_condition)
49003
+ :creation_date_condition,
49004
+ :image_watermarks)
48981
49005
  SENSITIVE = []
48982
49006
  include Aws::Structure
48983
49007
  end
@@ -49394,6 +49418,84 @@ module Aws::EC2
49394
49418
  include Aws::Structure
49395
49419
  end
49396
49420
 
49421
+ # The watermark filter criteria for an allowed image. Each entry can
49422
+ # specify one or more fields. All specified fields must match the same
49423
+ # watermark on the image.
49424
+ #
49425
+ # @!attribute [rw] watermark_key
49426
+ # The `accountId:name` of the watermark. Supports wildcards (`*`,
49427
+ # `?`).
49428
+ # @return [String]
49429
+ #
49430
+ # @!attribute [rw] source_image_region
49431
+ # The Region where the watermark was originally created. Supports
49432
+ # wildcards (`*`, `?`).
49433
+ # @return [String]
49434
+ #
49435
+ # @!attribute [rw] maximum_days_since_source_image_created
49436
+ # The maximum number of days that have elapsed since the source image
49437
+ # was created.
49438
+ #
49439
+ # Constraints: Minimum value of 0. Maximum value of 2147483647.
49440
+ # @return [Integer]
49441
+ #
49442
+ # @!attribute [rw] maximum_days_since_watermark_created
49443
+ # The maximum number of days that have elapsed since the watermark was
49444
+ # attached to the image.
49445
+ #
49446
+ # Constraints: Minimum value of 0. Maximum value of 2147483647.
49447
+ # @return [Integer]
49448
+ #
49449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageWatermarkFilterRequest AWS API Documentation
49450
+ #
49451
+ class ImageWatermarkFilterRequest < Struct.new(
49452
+ :watermark_key,
49453
+ :source_image_region,
49454
+ :maximum_days_since_source_image_created,
49455
+ :maximum_days_since_watermark_created)
49456
+ SENSITIVE = []
49457
+ include Aws::Structure
49458
+ end
49459
+
49460
+ # The watermark filter criteria for an allowed image. Each entry can
49461
+ # specify one or more fields. All specified fields must match the same
49462
+ # watermark on the image.
49463
+ #
49464
+ # @!attribute [rw] watermark_key
49465
+ # The `accountId:name` of the watermark. Supports wildcards (`*`,
49466
+ # `?`).
49467
+ # @return [String]
49468
+ #
49469
+ # @!attribute [rw] source_image_region
49470
+ # The Region where the watermark was originally created. Supports
49471
+ # wildcards (`*`, `?`).
49472
+ # @return [String]
49473
+ #
49474
+ # @!attribute [rw] maximum_days_since_source_image_created
49475
+ # The maximum number of days that have elapsed since the source image
49476
+ # was created.
49477
+ #
49478
+ # Constraints: Minimum value of 0. Maximum value of 2147483647.
49479
+ # @return [Integer]
49480
+ #
49481
+ # @!attribute [rw] maximum_days_since_watermark_created
49482
+ # The maximum number of days that have elapsed since the watermark was
49483
+ # attached to the image.
49484
+ #
49485
+ # Constraints: Minimum value of 0. Maximum value of 2147483647.
49486
+ # @return [Integer]
49487
+ #
49488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageWatermarkFilterResponse AWS API Documentation
49489
+ #
49490
+ class ImageWatermarkFilterResponse < Struct.new(
49491
+ :watermark_key,
49492
+ :source_image_region,
49493
+ :maximum_days_since_source_image_created,
49494
+ :maximum_days_since_watermark_created)
49495
+ SENSITIVE = []
49496
+ include Aws::Structure
49497
+ end
49498
+
49397
49499
  # @!attribute [rw] client_vpn_endpoint_id
49398
49500
  # The ID of the Client VPN endpoint to which the client certificate
49399
49501
  # revocation list applies.
@@ -64540,6 +64642,10 @@ module Aws::EC2
64540
64642
  #
64541
64643
  # * Connect
64542
64644
  #
64645
+ # * VPN Concentrator
64646
+ #
64647
+ # * Client VPN
64648
+ #
64543
64649
  # You must first delete all transit gateway attachments configured
64544
64650
  # prior to modifying the ASN on the transit gateway.
64545
64651
  # @return [Integer]
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.624.0'
81
+ GEM_VERSION = '1.625.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -13204,7 +13204,15 @@ module Aws
13204
13204
  }?,
13205
13205
  creation_date_condition: {
13206
13206
  maximum_days_since_created: ::Integer?
13207
- }?
13207
+ }?,
13208
+ image_watermarks: Array[
13209
+ {
13210
+ watermark_key: ::String?,
13211
+ source_image_region: ::String?,
13212
+ maximum_days_since_source_image_created: ::Integer?,
13213
+ maximum_days_since_watermark_created: ::Integer?
13214
+ }
13215
+ ]?
13208
13216
  }
13209
13217
  ],
13210
13218
  ?dry_run: bool
data/sig/types.rbs CHANGED
@@ -10790,6 +10790,7 @@ module Aws::EC2
10790
10790
  attr_accessor image_names: ::Array[::String]
10791
10791
  attr_accessor deprecation_time_condition: Types::DeprecationTimeCondition
10792
10792
  attr_accessor creation_date_condition: Types::CreationDateCondition
10793
+ attr_accessor image_watermarks: ::Array[Types::ImageWatermarkFilterResponse]
10793
10794
  SENSITIVE: []
10794
10795
  end
10795
10796
 
@@ -10799,6 +10800,7 @@ module Aws::EC2
10799
10800
  attr_accessor image_names: ::Array[::String]
10800
10801
  attr_accessor deprecation_time_condition: Types::DeprecationTimeConditionRequest
10801
10802
  attr_accessor creation_date_condition: Types::CreationDateConditionRequest
10803
+ attr_accessor image_watermarks: ::Array[Types::ImageWatermarkFilterRequest]
10802
10804
  SENSITIVE: []
10803
10805
  end
10804
10806
 
@@ -10898,6 +10900,22 @@ module Aws::EC2
10898
10900
  SENSITIVE: []
10899
10901
  end
10900
10902
 
10903
+ class ImageWatermarkFilterRequest
10904
+ attr_accessor watermark_key: ::String
10905
+ attr_accessor source_image_region: ::String
10906
+ attr_accessor maximum_days_since_source_image_created: ::Integer
10907
+ attr_accessor maximum_days_since_watermark_created: ::Integer
10908
+ SENSITIVE: []
10909
+ end
10910
+
10911
+ class ImageWatermarkFilterResponse
10912
+ attr_accessor watermark_key: ::String
10913
+ attr_accessor source_image_region: ::String
10914
+ attr_accessor maximum_days_since_source_image_created: ::Integer
10915
+ attr_accessor maximum_days_since_watermark_created: ::Integer
10916
+ SENSITIVE: []
10917
+ end
10918
+
10901
10919
  class ImportClientVpnClientCertificateRevocationListRequest
10902
10920
  attr_accessor client_vpn_endpoint_id: ::String
10903
10921
  attr_accessor certificate_revocation_list: ::String
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.624.0
4
+ version: 1.625.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services