aws-sdk-ec2 1.516.0 → 1.517.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: 668a55cb6c253c445bc938e04fabc6e18b9d1e5e886451a6c038f91a52eebc74
4
- data.tar.gz: a9b6b9f89cc21726efd63f940b3e3f1c9f5354c76a91f04d39c6481b18b91a57
3
+ metadata.gz: 0702cd691d4e4842d84dbc70a6b3cbd1fdcc83c72a022c6ae1dc42a9a1908a52
4
+ data.tar.gz: 64f13f17a386d77e94f5d993e55e01b2b42f270f980407f83306b5dd25d17434
5
5
  SHA512:
6
- metadata.gz: 4fd3ab1d73e8121d66b5ca69606eb542556a4389fcc22de99a4096a539bb51681bd234f6f041728b7e5ea0cbeb45921be1e84d9d556cb3a3f767a510ec7be9e4
7
- data.tar.gz: f86d2cd04454ce525d0d99d518e40fdb2fd1477dcd81d9db4df89bb5714b0c1eafbb5a68860bd3368ce3281ec41b8416a2729e76dfc403a66ec66273868e92c7
6
+ metadata.gz: ca57f36d076ea692b1937f21cce09118ed6270d289ba0635358d00271f9552f30184b4f288193352e8e92128eac192ae4197588e5670d688afa78d058051449a
7
+ data.tar.gz: daa8b030bc18938fbe10446f68a604ddb4b29873c01cc2aa0560b9e7828c77bd26d31e46a2cc425f4ad07e517f3f44335656c4c854c9cca2eef6802fd3d40d6e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.517.0 (2025-04-30)
5
+ ------------------
6
+
7
+ * Feature - Launch of cost distribution feature for IPAM owners to distribute costs to internal teams.
8
+
4
9
  1.516.0 (2025-04-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.516.0
1
+ 1.517.0
@@ -6107,7 +6107,7 @@ module Aws::EC2
6107
6107
  # Indicates whether the client VPN session is disconnected after the
6108
6108
  # maximum timeout specified in `SessionTimeoutHours` is reached. If
6109
6109
  # `true`, users are prompted to reconnect client VPN. If `false`, client
6110
- # VPN attempts to reconnect automatically. The default value is `false`.
6110
+ # VPN attempts to reconnect automatically. The default value is `true`.
6111
6111
  #
6112
6112
  # @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6113
6113
  #
@@ -7165,7 +7165,7 @@ module Aws::EC2
7165
7165
  # },
7166
7166
  # },
7167
7167
  # },
7168
- # image_id: "String",
7168
+ # image_id: "ImageId",
7169
7169
  # },
7170
7170
  # ],
7171
7171
  # },
@@ -8288,6 +8288,23 @@ module Aws::EC2
8288
8288
  # Enable this option to use your own GUA ranges as private IPv6
8289
8289
  # addresses. This option is disabled by default.
8290
8290
  #
8291
+ # @option params [String] :metered_account
8292
+ # A metered account is an Amazon Web Services account that is charged
8293
+ # for active IP addresses managed in IPAM. For more information, see
8294
+ # [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
8295
+ #
8296
+ # Possible values:
8297
+ #
8298
+ # * `ipam-owner` (default): The Amazon Web Services account which owns
8299
+ # the IPAM is charged for all active IP addresses managed in IPAM.
8300
+ #
8301
+ # * `resource-owner`: The Amazon Web Services account that owns the IP
8302
+ # address is charged for the active IP address.
8303
+ #
8304
+ #
8305
+ #
8306
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
8307
+ #
8291
8308
  # @return [Types::CreateIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8292
8309
  #
8293
8310
  # * {Types::CreateIpamResult#ipam #ipam} => Types::Ipam
@@ -8316,6 +8333,7 @@ module Aws::EC2
8316
8333
  # client_token: "String",
8317
8334
  # tier: "free", # accepts free, advanced
8318
8335
  # enable_private_gua: false,
8336
+ # metered_account: "ipam-owner", # accepts ipam-owner, resource-owner
8319
8337
  # })
8320
8338
  #
8321
8339
  # @example Response structure
@@ -8340,6 +8358,7 @@ module Aws::EC2
8340
8358
  # resp.ipam.state_message #=> String
8341
8359
  # resp.ipam.tier #=> String, one of "free", "advanced"
8342
8360
  # resp.ipam.enable_private_gua #=> Boolean
8361
+ # resp.ipam.metered_account #=> String, one of "ipam-owner", "resource-owner"
8343
8362
  #
8344
8363
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpam AWS API Documentation
8345
8364
  #
@@ -16116,8 +16135,6 @@ module Aws::EC2
16116
16135
  # attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`. Use
16117
16136
  # ModifyVpcAttribute to set the VPC attributes.
16118
16137
  #
16119
- # Default: `true`
16120
- #
16121
16138
  # @option params [Array<Types::TagSpecification>] :tag_specifications
16122
16139
  # The tags to associate with the endpoint.
16123
16140
  #
@@ -17628,6 +17645,7 @@ module Aws::EC2
17628
17645
  # resp.ipam.state_message #=> String
17629
17646
  # resp.ipam.tier #=> String, one of "free", "advanced"
17630
17647
  # resp.ipam.enable_private_gua #=> Boolean
17648
+ # resp.ipam.metered_account #=> String, one of "ipam-owner", "resource-owner"
17631
17649
  #
17632
17650
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpam AWS API Documentation
17633
17651
  #
@@ -22279,13 +22297,7 @@ module Aws::EC2
22279
22297
  # Blocks, you purchase a specific instance type for a period of time.
22280
22298
  #
22281
22299
  # To search for an available Capacity Block offering, you specify a
22282
- # reservation duration and instance count. You must select one of the
22283
- # following options.
22284
- #
22285
- # * For reservation durations<b> 1-day increments up 14 days and 7-day
22286
- # increments up to 182 days total</b>
22287
- #
22288
- # * For instance count<b> 1, 2, 4, 8, 16, 32, or 64 instances</b>
22300
+ # reservation duration and instance count.
22289
22301
  #
22290
22302
  # @option params [Boolean] :dry_run
22291
22303
  # Checks whether you have the required permissions for the action,
@@ -22298,7 +22310,9 @@ module Aws::EC2
22298
22310
  # capacity.
22299
22311
  #
22300
22312
  # @option params [Integer] :instance_count
22301
- # The number of instances for which to reserve capacity.
22313
+ # The number of instances for which to reserve capacity. Each Capacity
22314
+ # Block can have up to 64 instances, and you can have up to 256
22315
+ # instances across Capacity Blocks.
22302
22316
  #
22303
22317
  # @option params [Time,DateTime,Date,Integer,String] :start_date_range
22304
22318
  # The earliest start date for the Capacity Block offering.
@@ -22307,7 +22321,9 @@ module Aws::EC2
22307
22321
  # The latest end date for the Capacity Block offering.
22308
22322
  #
22309
22323
  # @option params [required, Integer] :capacity_duration_hours
22310
- # The number of hours for which to reserve Capacity Block.
22324
+ # The reservation duration for the Capacity Block, in hours. You must
22325
+ # specify the duration in 1-day increments up 14 days, and in 7-day
22326
+ # increments up to 182 days.
22311
22327
  #
22312
22328
  # @option params [String] :next_token
22313
22329
  # The token to use to retrieve the next page of results.
@@ -29172,6 +29188,7 @@ module Aws::EC2
29172
29188
  # resp.ipams[0].state_message #=> String
29173
29189
  # resp.ipams[0].tier #=> String, one of "free", "advanced"
29174
29190
  # resp.ipams[0].enable_private_gua #=> Boolean
29191
+ # resp.ipams[0].metered_account #=> String, one of "ipam-owner", "resource-owner"
29175
29192
  #
29176
29193
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpams AWS API Documentation
29177
29194
  #
@@ -50517,7 +50534,7 @@ module Aws::EC2
50517
50534
  # Indicates whether the client VPN session is disconnected after the
50518
50535
  # maximum timeout specified in `sessionTimeoutHours` is reached. If
50519
50536
  # `true`, users are prompted to reconnect client VPN. If `false`, client
50520
- # VPN attempts to reconnect automatically. The default value is `false`.
50537
+ # VPN attempts to reconnect automatically. The default value is `true`.
50521
50538
  #
50522
50539
  # @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
50523
50540
  #
@@ -50882,7 +50899,7 @@ module Aws::EC2
50882
50899
  # },
50883
50900
  # },
50884
50901
  # },
50885
- # image_id: "String",
50902
+ # image_id: "ImageId",
50886
50903
  # },
50887
50904
  # ],
50888
50905
  # },
@@ -52445,6 +52462,23 @@ module Aws::EC2
52445
52462
  # Enable this option to use your own GUA ranges as private IPv6
52446
52463
  # addresses. This option is disabled by default.
52447
52464
  #
52465
+ # @option params [String] :metered_account
52466
+ # A metered account is an Amazon Web Services account that is charged
52467
+ # for active IP addresses managed in IPAM. For more information, see
52468
+ # [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
52469
+ #
52470
+ # Possible values:
52471
+ #
52472
+ # * `ipam-owner` (default): The Amazon Web Services account which owns
52473
+ # the IPAM is charged for all active IP addresses managed in IPAM.
52474
+ #
52475
+ # * `resource-owner`: The Amazon Web Services account that owns the IP
52476
+ # address is charged for the active IP address.
52477
+ #
52478
+ #
52479
+ #
52480
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
52481
+ #
52448
52482
  # @return [Types::ModifyIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
52449
52483
  #
52450
52484
  # * {Types::ModifyIpamResult#ipam #ipam} => Types::Ipam
@@ -52467,6 +52501,7 @@ module Aws::EC2
52467
52501
  # ],
52468
52502
  # tier: "free", # accepts free, advanced
52469
52503
  # enable_private_gua: false,
52504
+ # metered_account: "ipam-owner", # accepts ipam-owner, resource-owner
52470
52505
  # })
52471
52506
  #
52472
52507
  # @example Response structure
@@ -52491,6 +52526,7 @@ module Aws::EC2
52491
52526
  # resp.ipam.state_message #=> String
52492
52527
  # resp.ipam.tier #=> String, one of "free", "advanced"
52493
52528
  # resp.ipam.enable_private_gua #=> Boolean
52529
+ # resp.ipam.metered_account #=> String, one of "ipam-owner", "resource-owner"
52494
52530
  #
52495
52531
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpam AWS API Documentation
52496
52532
  #
@@ -63886,45 +63922,38 @@ module Aws::EC2
63886
63922
  # Stops an Amazon EBS-backed instance. For more information, see [Stop
63887
63923
  # and start Amazon EC2 instances][1] in the *Amazon EC2 User Guide*.
63888
63924
  #
63889
- # You can use the Stop action to hibernate an instance if the instance
63890
- # is [enabled for hibernation][2] and it meets the [hibernation
63891
- # prerequisites][3]. For more information, see [Hibernate your Amazon
63892
- # EC2 instance][4] in the *Amazon EC2 User Guide*.
63925
+ # When you stop an instance, we shut it down. You can restart your
63926
+ # instance at any time.
63893
63927
  #
63894
- # We don't charge usage for a stopped instance, or data transfer fees;
63895
- # however, your root partition Amazon EBS volume remains and continues
63896
- # to persist your data, and you are charged for Amazon EBS volume usage.
63897
- # Every time you start your instance, Amazon EC2 charges a one-minute
63898
- # minimum for instance usage, and thereafter charges per second for
63899
- # instance usage.
63900
- #
63901
- # You can't stop or hibernate instance store-backed instances. You
63902
- # can't use the Stop action to hibernate Spot Instances, but you can
63903
- # specify that Amazon EC2 should hibernate Spot Instances when they are
63904
- # interrupted. For more information, see [Hibernating interrupted Spot
63905
- # Instances][5] in the *Amazon EC2 User Guide*.
63906
- #
63907
- # When you stop or hibernate an instance, we shut it down. You can
63908
- # restart your instance at any time. Before stopping or hibernating an
63909
- # instance, make sure it is in a state from which it can be restarted.
63910
- # Stopping an instance does not preserve data stored in RAM, but
63911
- # hibernating an instance does preserve data stored in RAM. If an
63912
- # instance cannot hibernate successfully, a normal shutdown occurs.
63913
- #
63914
- # Stopping and hibernating an instance is different to rebooting or
63915
- # terminating it. For example, when you stop or hibernate an instance,
63916
- # the root device and any other devices attached to the instance
63917
- # persist. When you terminate an instance, the root device and any other
63918
- # devices attached during the instance launch are automatically deleted.
63919
- # For more information about the differences between rebooting,
63920
- # stopping, hibernating, and terminating instances, see [Instance
63921
- # lifecycle][6] in the *Amazon EC2 User Guide*.
63922
- #
63923
- # When you stop an instance, we attempt to shut it down forcibly after a
63924
- # short while. If your instance appears stuck in the stopping state
63925
- # after a period of time, there may be an issue with the underlying host
63926
- # computer. For more information, see [Troubleshoot stopping your
63927
- # instance][7] in the *Amazon EC2 User Guide*.
63928
+ # You can use the Stop operation together with the Hibernate parameter
63929
+ # to hibernate an instance if the instance is [enabled for
63930
+ # hibernation][2] and meets the [hibernation prerequisites][3]. Stopping
63931
+ # an instance doesn't preserve data stored in RAM, while hibernation
63932
+ # does. If hibernation fails, a normal shutdown occurs. For more
63933
+ # information, see [Hibernate your Amazon EC2 instance][4] in the
63934
+ # *Amazon EC2 User Guide*.
63935
+ #
63936
+ # If your instance appears stuck in the `stopping` state, there might be
63937
+ # an issue with the underlying host computer. You can use the Stop
63938
+ # operation together with the Force parameter to force stop your
63939
+ # instance. For more information, see [Troubleshoot Amazon EC2 instance
63940
+ # stop issues][5] in the *Amazon EC2 User Guide*.
63941
+ #
63942
+ # Stopping and hibernating an instance differs from rebooting or
63943
+ # terminating it. For example, a stopped or hibernated instance retains
63944
+ # its root volume and any data volumes, unlike terminated instances
63945
+ # where these volumes are automatically deleted. For more information
63946
+ # about the differences between stopping, hibernating, rebooting, and
63947
+ # terminating instances, see [Amazon EC2 instance state changes][6] in
63948
+ # the *Amazon EC2 User Guide*.
63949
+ #
63950
+ # We don't charge for instance usage or data transfer fees when an
63951
+ # instance is stopped. However, the root volume and any data volumes
63952
+ # remain and continue to persist your data, and you're charged for
63953
+ # volume usage. Every time you start your instance, Amazon EC2 charges a
63954
+ # one-minute minimum for instance usage, followed by per-second billing.
63955
+ #
63956
+ # You can't stop or hibernate instance store-backed instances.
63928
63957
  #
63929
63958
  #
63930
63959
  #
@@ -63932,9 +63961,8 @@ module Aws::EC2
63932
63961
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/enabling-hibernation.html
63933
63962
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html
63934
63963
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html
63935
- # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-interruptions.html#hibernate-spot-instances
63964
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
63936
63965
  # [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html
63937
- # [7]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
63938
63966
  #
63939
63967
  # @option params [required, Array<String>] :instance_ids
63940
63968
  # The IDs of the instances.
@@ -63958,13 +63986,23 @@ module Aws::EC2
63958
63986
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
63959
63987
  #
63960
63988
  # @option params [Boolean] :force
63961
- # Forces the instances to stop. The instances do not have an opportunity
63962
- # to flush file system caches or file system metadata. If you use this
63963
- # option, you must perform file system check and repair procedures. This
63964
- # option is not recommended for Windows instances.
63989
+ # Forces the instance to stop. The instance will first attempt a
63990
+ # graceful shutdown, which includes flushing file system caches and
63991
+ # metadata. If the graceful shutdown fails to complete within the
63992
+ # timeout period, the instance shuts down forcibly without flushing the
63993
+ # file system caches and metadata.
63994
+ #
63995
+ # After using this option, you must perform file system check and repair
63996
+ # procedures. This option is not recommended for Windows instances. For
63997
+ # more information, see [Troubleshoot Amazon EC2 instance stop
63998
+ # issues][1] in the *Amazon EC2 User Guide*.
63965
63999
  #
63966
64000
  # Default: `false`
63967
64001
  #
64002
+ #
64003
+ #
64004
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
64005
+ #
63968
64006
  # @return [Types::StopInstancesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
63969
64007
  #
63970
64008
  # * {Types::StopInstancesResult#stopping_instances #stopping_instances} => Array&lt;Types::InstanceStateChange&gt;
@@ -64080,8 +64118,8 @@ module Aws::EC2
64080
64118
  req.send_request(options)
64081
64119
  end
64082
64120
 
64083
- # Shuts down the specified instances. This operation is idempotent; if
64084
- # you terminate an instance more than once, each call succeeds.
64121
+ # Shuts down the specified instances. This operation is [idempotent][1];
64122
+ # if you terminate an instance more than once, each call succeeds.
64085
64123
  #
64086
64124
  # If you specify multiple instances and the request fails (for example,
64087
64125
  # because of a single incorrect instance ID), none of the instances are
@@ -64128,21 +64166,22 @@ module Aws::EC2
64128
64166
  #
64129
64167
  # You can stop, start, and terminate EBS-backed instances. You can only
64130
64168
  # terminate instance store-backed instances. What happens to an instance
64131
- # differs if you stop it or terminate it. For example, when you stop an
64169
+ # differs if you stop or terminate it. For example, when you stop an
64132
64170
  # instance, the root device and any other devices attached to the
64133
64171
  # instance persist. When you terminate an instance, any attached EBS
64134
64172
  # volumes with the `DeleteOnTermination` block device mapping parameter
64135
64173
  # set to `true` are automatically deleted. For more information about
64136
64174
  # the differences between stopping and terminating instances, see
64137
- # [Instance lifecycle][1] in the *Amazon EC2 User Guide*.
64175
+ # [Amazon EC2 instance state changes][2] in the *Amazon EC2 User Guide*.
64138
64176
  #
64139
- # For more information about troubleshooting, see [Troubleshooting
64140
- # terminating your instance][2] in the *Amazon EC2 User Guide*.
64177
+ # For information about troubleshooting, see [Troubleshooting
64178
+ # terminating your instance][3] in the *Amazon EC2 User Guide*.
64141
64179
  #
64142
64180
  #
64143
64181
  #
64144
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html
64145
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html
64182
+ # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
64183
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html
64184
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html
64146
64185
  #
64147
64186
  # @option params [required, Array<String>] :instance_ids
64148
64187
  # The IDs of the instances.
@@ -64774,7 +64813,7 @@ module Aws::EC2
64774
64813
  tracer: tracer
64775
64814
  )
64776
64815
  context[:gem_name] = 'aws-sdk-ec2'
64777
- context[:gem_version] = '1.516.0'
64816
+ context[:gem_version] = '1.517.0'
64778
64817
  Seahorse::Client::Request.new(handlers, context)
64779
64818
  end
64780
64819
 
@@ -1982,6 +1982,7 @@ module Aws::EC2
1982
1982
  IpamId = Shapes::StringShape.new(name: 'IpamId')
1983
1983
  IpamManagementState = Shapes::StringShape.new(name: 'IpamManagementState')
1984
1984
  IpamMaxResults = Shapes::IntegerShape.new(name: 'IpamMaxResults')
1985
+ IpamMeteredAccount = Shapes::StringShape.new(name: 'IpamMeteredAccount')
1985
1986
  IpamNetmaskLength = Shapes::IntegerShape.new(name: 'IpamNetmaskLength')
1986
1987
  IpamNetworkInterfaceAttachmentStatus = Shapes::StringShape.new(name: 'IpamNetworkInterfaceAttachmentStatus')
1987
1988
  IpamOperatingRegion = Shapes::StructureShape.new(name: 'IpamOperatingRegion')
@@ -5292,6 +5293,7 @@ module Aws::EC2
5292
5293
  CreateIpamRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5293
5294
  CreateIpamRequest.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "Tier"))
5294
5295
  CreateIpamRequest.add_member(:enable_private_gua, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrivateGua"))
5296
+ CreateIpamRequest.add_member(:metered_account, Shapes::ShapeRef.new(shape: IpamMeteredAccount, location_name: "MeteredAccount"))
5295
5297
  CreateIpamRequest.struct_class = Types::CreateIpamRequest
5296
5298
 
5297
5299
  CreateIpamResourceDiscoveryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
@@ -9754,7 +9756,7 @@ module Aws::EC2
9754
9756
  FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
9755
9757
  FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
9756
9758
  FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
9757
- FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
9759
+ FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
9758
9760
  FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
9759
9761
 
9760
9762
  FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
@@ -11470,6 +11472,7 @@ module Aws::EC2
11470
11472
  Ipam.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
11471
11473
  Ipam.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "tier"))
11472
11474
  Ipam.add_member(:enable_private_gua, Shapes::ShapeRef.new(shape: Boolean, location_name: "enablePrivateGua"))
11475
+ Ipam.add_member(:metered_account, Shapes::ShapeRef.new(shape: IpamMeteredAccount, location_name: "meteredAccount"))
11473
11476
  Ipam.struct_class = Types::Ipam
11474
11477
 
11475
11478
  IpamAddressHistoryRecord.add_member(:resource_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwnerId"))
@@ -12677,6 +12680,7 @@ module Aws::EC2
12677
12680
  ModifyIpamRequest.add_member(:remove_operating_regions, Shapes::ShapeRef.new(shape: RemoveIpamOperatingRegionSet, location_name: "RemoveOperatingRegion"))
12678
12681
  ModifyIpamRequest.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "Tier"))
12679
12682
  ModifyIpamRequest.add_member(:enable_private_gua, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrivateGua"))
12683
+ ModifyIpamRequest.add_member(:metered_account, Shapes::ShapeRef.new(shape: IpamMeteredAccount, location_name: "MeteredAccount"))
12680
12684
  ModifyIpamRequest.struct_class = Types::ModifyIpamRequest
12681
12685
 
12682
12686
  ModifyIpamResourceCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
@@ -1488,12 +1488,22 @@ module Aws::EC2
1488
1488
  # If you have the required permissions, the error response is
1489
1489
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
1490
1490
  # @option options [Boolean] :force
1491
- # Forces the instances to stop. The instances do not have an opportunity
1492
- # to flush file system caches or file system metadata. If you use this
1493
- # option, you must perform file system check and repair procedures. This
1494
- # option is not recommended for Windows instances.
1491
+ # Forces the instance to stop. The instance will first attempt a
1492
+ # graceful shutdown, which includes flushing file system caches and
1493
+ # metadata. If the graceful shutdown fails to complete within the
1494
+ # timeout period, the instance shuts down forcibly without flushing the
1495
+ # file system caches and metadata.
1496
+ #
1497
+ # After using this option, you must perform file system check and repair
1498
+ # procedures. This option is not recommended for Windows instances. For
1499
+ # more information, see [Troubleshoot Amazon EC2 instance stop
1500
+ # issues][1] in the *Amazon EC2 User Guide*.
1495
1501
  #
1496
1502
  # Default: `false`
1503
+ #
1504
+ #
1505
+ #
1506
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
1497
1507
  # @return [Types::StopInstancesResult]
1498
1508
  def stop(options = {})
1499
1509
  options = Aws::Util.deep_merge(options, instance_ids: [@id])
@@ -2055,12 +2065,22 @@ module Aws::EC2
2055
2065
  # If you have the required permissions, the error response is
2056
2066
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
2057
2067
  # @option options [Boolean] :force
2058
- # Forces the instances to stop. The instances do not have an opportunity
2059
- # to flush file system caches or file system metadata. If you use this
2060
- # option, you must perform file system check and repair procedures. This
2061
- # option is not recommended for Windows instances.
2068
+ # Forces the instance to stop. The instance will first attempt a
2069
+ # graceful shutdown, which includes flushing file system caches and
2070
+ # metadata. If the graceful shutdown fails to complete within the
2071
+ # timeout period, the instance shuts down forcibly without flushing the
2072
+ # file system caches and metadata.
2073
+ #
2074
+ # After using this option, you must perform file system check and repair
2075
+ # procedures. This option is not recommended for Windows instances. For
2076
+ # more information, see [Troubleshoot Amazon EC2 instance stop
2077
+ # issues][1] in the *Amazon EC2 User Guide*.
2062
2078
  #
2063
2079
  # Default: `false`
2080
+ #
2081
+ #
2082
+ #
2083
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
2064
2084
  # @return [void]
2065
2085
  def batch_stop(options = {})
2066
2086
  batch_enum.each do |batch|
@@ -6092,20 +6092,21 @@ module Aws::EC2
6092
6092
  include Aws::Structure
6093
6093
  end
6094
6094
 
6095
- # Client route enforcement is a feature of the Client VPN service that
6096
- # helps enforce administrator defined routes on devices connected
6097
- # through the VPN. T his feature helps improve your security posture by
6098
- # ensuring that network traffic originating from a connected client is
6099
- # not inadvertently sent outside the VPN tunnel.
6095
+ # Client Route Enforcement is a feature of Client VPN that helps enforce
6096
+ # administrator defined routes on devices connected through the VPN.
6097
+ # This feature helps improve your security posture by ensuring that
6098
+ # network traffic originating from a connected client is not
6099
+ # inadvertently sent outside the VPN tunnel.
6100
6100
  #
6101
- # Client route enforcement works by monitoring the route table of a
6101
+ # Client Route Enforcement works by monitoring the route table of a
6102
6102
  # connected device for routing policy changes to the VPN connection. If
6103
6103
  # the feature detects any VPN routing policy modifications, it will
6104
6104
  # automatically force an update to the route table, reverting it back to
6105
6105
  # the expected route configurations.
6106
6106
  #
6107
6107
  # @!attribute [rw] enforced
6108
- # Enable or disable the client route enforcement feature.
6108
+ # Enable or disable Client Route Enforcement. The state can either be
6109
+ # `true` (enabled) or `false` (disabled). The default is `false`.
6109
6110
  #
6110
6111
  # Valid values: `true | false`
6111
6112
  #
@@ -6120,11 +6121,11 @@ module Aws::EC2
6120
6121
  include Aws::Structure
6121
6122
  end
6122
6123
 
6123
- # The current status of client route enforcement. The state will either
6124
- # be `true` (enabled) or `false` (disabled).
6124
+ # The current status of Client Route Enforcement.
6125
6125
  #
6126
6126
  # @!attribute [rw] enforced
6127
- # Status of the client route enforcement feature.
6127
+ # Status of the client route enforcement feature, indicating whether
6128
+ # Client Route Enforcement is `true` (enabled) or `false` (disabled).
6128
6129
  #
6129
6130
  # Valid values: `true | false`
6130
6131
  #
@@ -6469,7 +6470,7 @@ module Aws::EC2
6469
6470
  # Indicates whether the client VPN session is disconnected after the
6470
6471
  # maximum `sessionTimeoutHours` is reached. If `true`, users are
6471
6472
  # prompted to reconnect client VPN. If `false`, client VPN attempts to
6472
- # reconnect automatically. The default value is `false`.
6473
+ # reconnect automatically. The default value is `true`.
6473
6474
  # @return [Boolean]
6474
6475
  #
6475
6476
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
@@ -8334,7 +8335,7 @@ module Aws::EC2
8334
8335
  # maximum timeout specified in `SessionTimeoutHours` is reached. If
8335
8336
  # `true`, users are prompted to reconnect client VPN. If `false`,
8336
8337
  # client VPN attempts to reconnect automatically. The default value is
8337
- # `false`.
8338
+ # `true`.
8338
8339
  # @return [Boolean]
8339
8340
  #
8340
8341
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
@@ -9908,6 +9909,24 @@ module Aws::EC2
9908
9909
  # addresses. This option is disabled by default.
9909
9910
  # @return [Boolean]
9910
9911
  #
9912
+ # @!attribute [rw] metered_account
9913
+ # A metered account is an Amazon Web Services account that is charged
9914
+ # for active IP addresses managed in IPAM. For more information, see
9915
+ # [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
9916
+ #
9917
+ # Possible values:
9918
+ #
9919
+ # * `ipam-owner` (default): The Amazon Web Services account which owns
9920
+ # the IPAM is charged for all active IP addresses managed in IPAM.
9921
+ #
9922
+ # * `resource-owner`: The Amazon Web Services account that owns the IP
9923
+ # address is charged for the active IP address.
9924
+ #
9925
+ #
9926
+ #
9927
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
9928
+ # @return [String]
9929
+ #
9911
9930
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamRequest AWS API Documentation
9912
9931
  #
9913
9932
  class CreateIpamRequest < Struct.new(
@@ -9917,7 +9936,8 @@ module Aws::EC2
9917
9936
  :tag_specifications,
9918
9937
  :client_token,
9919
9938
  :tier,
9920
- :enable_private_gua)
9939
+ :enable_private_gua,
9940
+ :metered_account)
9921
9941
  SENSITIVE = []
9922
9942
  include Aws::Structure
9923
9943
  end
@@ -14430,8 +14450,6 @@ module Aws::EC2
14430
14450
  # To use a private hosted zone, you must set the following VPC
14431
14451
  # attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`.
14432
14452
  # Use ModifyVpcAttribute to set the VPC attributes.
14433
- #
14434
- # Default: `true`
14435
14453
  # @return [Boolean]
14436
14454
  #
14437
14455
  # @!attribute [rw] tag_specifications
@@ -18887,7 +18905,9 @@ module Aws::EC2
18887
18905
  # @return [String]
18888
18906
  #
18889
18907
  # @!attribute [rw] instance_count
18890
- # The number of instances for which to reserve capacity.
18908
+ # The number of instances for which to reserve capacity. Each Capacity
18909
+ # Block can have up to 64 instances, and you can have up to 256
18910
+ # instances across Capacity Blocks.
18891
18911
  # @return [Integer]
18892
18912
  #
18893
18913
  # @!attribute [rw] start_date_range
@@ -18899,7 +18919,9 @@ module Aws::EC2
18899
18919
  # @return [Time]
18900
18920
  #
18901
18921
  # @!attribute [rw] capacity_duration_hours
18902
- # The number of hours for which to reserve Capacity Block.
18922
+ # The reservation duration for the Capacity Block, in hours. You must
18923
+ # specify the duration in 1-day increments up 14 days, and in 7-day
18924
+ # increments up to 182 days.
18903
18925
  # @return [Integer]
18904
18926
  #
18905
18927
  # @!attribute [rw] next_token
@@ -36586,11 +36608,11 @@ module Aws::EC2
36586
36608
  # Amazon EBS encryption. For more information, see [Supported instance
36587
36609
  # types][2].
36588
36610
  #
36589
- # This parameter is not returned by .
36611
+ # This parameter is not returned by [DescribeImageAttribute][3].
36590
36612
  #
36591
- # For and , whether you can include this parameter, and the allowed
36592
- # values differ depending on the type of block device mapping you are
36593
- # creating.
36613
+ # For [CreateImage][4] and [RegisterImage][5], whether you can include
36614
+ # this parameter, and the allowed values differ depending on the type
36615
+ # of block device mapping you are creating.
36594
36616
  #
36595
36617
  # * If you are creating a block device mapping for a **new (empty)
36596
36618
  # volume**, you can include this parameter, and specify either
@@ -36618,6 +36640,9 @@ module Aws::EC2
36618
36640
  #
36619
36641
  # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
36620
36642
  # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
36643
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImageAttribute
36644
+ # [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage
36645
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RegisterImage
36621
36646
  # @return [Boolean]
36622
36647
  #
36623
36648
  # @!attribute [rw] delete_on_termination
@@ -45203,6 +45228,9 @@ module Aws::EC2
45203
45228
  #
45204
45229
  # * For instance types with GPU accelerators, specify `gpu`.
45205
45230
  #
45231
+ # * For instance types with Inference accelerators, specify
45232
+ # `inference`.
45233
+ #
45206
45234
  # Default: Any accelerator type
45207
45235
  # @return [Array<String>]
45208
45236
  #
@@ -45686,6 +45714,9 @@ module Aws::EC2
45686
45714
  #
45687
45715
  # * For instance types with GPU accelerators, specify `gpu`.
45688
45716
  #
45717
+ # * For instance types with Inference accelerators, specify
45718
+ # `inference`.
45719
+ #
45689
45720
  # Default: Any accelerator type
45690
45721
  # @return [Array<String>]
45691
45722
  #
@@ -46757,6 +46788,24 @@ module Aws::EC2
46757
46788
  # addresses. This option is disabled by default.
46758
46789
  # @return [Boolean]
46759
46790
  #
46791
+ # @!attribute [rw] metered_account
46792
+ # A metered account is an Amazon Web Services account that is charged
46793
+ # for active IP addresses managed in IPAM. For more information, see
46794
+ # [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
46795
+ #
46796
+ # Possible values:
46797
+ #
46798
+ # * `ipam-owner` (default): The Amazon Web Services account which owns
46799
+ # the IPAM is charged for all active IP addresses managed in IPAM.
46800
+ #
46801
+ # * `resource-owner`: The Amazon Web Services account that owns the IP
46802
+ # address is charged for the active IP address.
46803
+ #
46804
+ #
46805
+ #
46806
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
46807
+ # @return [String]
46808
+ #
46760
46809
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
46761
46810
  #
46762
46811
  class Ipam < Struct.new(
@@ -46776,7 +46825,8 @@ module Aws::EC2
46776
46825
  :resource_discovery_association_count,
46777
46826
  :state_message,
46778
46827
  :tier,
46779
- :enable_private_gua)
46828
+ :enable_private_gua,
46829
+ :metered_account)
46780
46830
  SENSITIVE = []
46781
46831
  include Aws::Structure
46782
46832
  end
@@ -51981,7 +52031,7 @@ module Aws::EC2
51981
52031
  # maximum timeout specified in `sessionTimeoutHours` is reached. If
51982
52032
  # `true`, users are prompted to reconnect client VPN. If `false`,
51983
52033
  # client VPN attempts to reconnect automatically. The default value is
51984
- # `false`.
52034
+ # `true`.
51985
52035
  # @return [Boolean]
51986
52036
  #
51987
52037
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
@@ -53451,6 +53501,24 @@ module Aws::EC2
53451
53501
  # addresses. This option is disabled by default.
53452
53502
  # @return [Boolean]
53453
53503
  #
53504
+ # @!attribute [rw] metered_account
53505
+ # A metered account is an Amazon Web Services account that is charged
53506
+ # for active IP addresses managed in IPAM. For more information, see
53507
+ # [Enable cost distribution][1] in the *Amazon VPC IPAM User Guide*.
53508
+ #
53509
+ # Possible values:
53510
+ #
53511
+ # * `ipam-owner` (default): The Amazon Web Services account which owns
53512
+ # the IPAM is charged for all active IP addresses managed in IPAM.
53513
+ #
53514
+ # * `resource-owner`: The Amazon Web Services account that owns the IP
53515
+ # address is charged for the active IP address.
53516
+ #
53517
+ #
53518
+ #
53519
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html
53520
+ # @return [String]
53521
+ #
53454
53522
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
53455
53523
  #
53456
53524
  class ModifyIpamRequest < Struct.new(
@@ -53460,7 +53528,8 @@ module Aws::EC2
53460
53528
  :add_operating_regions,
53461
53529
  :remove_operating_regions,
53462
53530
  :tier,
53463
- :enable_private_gua)
53531
+ :enable_private_gua,
53532
+ :metered_account)
53464
53533
  SENSITIVE = []
53465
53534
  include Aws::Structure
53466
53535
  end
@@ -59006,12 +59075,19 @@ module Aws::EC2
59006
59075
  # unsupported instance families.
59007
59076
  #
59008
59077
  # If you specify an unsupported instance family as a value for
59009
- # baseline performance, the API returns an empty response for and an
59010
- # exception for , , , and .
59078
+ # baseline performance, the API returns an empty response for
59079
+ # [GetInstanceTypesFromInstanceRequirements][2] and an exception for
59080
+ # [CreateFleet][3], [RequestSpotFleet][4], [ModifyFleet][5], and
59081
+ # [ModifySpotFleetRequest][6].
59011
59082
  #
59012
59083
  #
59013
59084
  #
59014
59085
  # [1]: https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html
59086
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements
59087
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
59088
+ # [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet
59089
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet
59090
+ # [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest
59015
59091
  # @return [String]
59016
59092
  #
59017
59093
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PerformanceFactorReference AWS API Documentation
@@ -59069,12 +59145,19 @@ module Aws::EC2
59069
59145
  # unsupported instance families.
59070
59146
  #
59071
59147
  # If you specify an unsupported instance family as a value for
59072
- # baseline performance, the API returns an empty response for and an
59073
- # exception for , , , and .
59148
+ # baseline performance, the API returns an empty response for
59149
+ # [GetInstanceTypesFromInstanceRequirements][2] and an exception for
59150
+ # [CreateFleet][3], [RequestSpotFleet][4], [ModifyFleet][5], and
59151
+ # [ModifySpotFleetRequest][6].
59074
59152
  #
59075
59153
  #
59076
59154
  #
59077
59155
  # [1]: https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html
59156
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements
59157
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
59158
+ # [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet
59159
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet
59160
+ # [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest
59078
59161
  # @return [String]
59079
59162
  #
59080
59163
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PerformanceFactorReferenceRequest AWS API Documentation
@@ -69792,12 +69875,22 @@ module Aws::EC2
69792
69875
  # @return [Boolean]
69793
69876
  #
69794
69877
  # @!attribute [rw] force
69795
- # Forces the instances to stop. The instances do not have an
69796
- # opportunity to flush file system caches or file system metadata. If
69797
- # you use this option, you must perform file system check and repair
69798
- # procedures. This option is not recommended for Windows instances.
69878
+ # Forces the instance to stop. The instance will first attempt a
69879
+ # graceful shutdown, which includes flushing file system caches and
69880
+ # metadata. If the graceful shutdown fails to complete within the
69881
+ # timeout period, the instance shuts down forcibly without flushing
69882
+ # the file system caches and metadata.
69883
+ #
69884
+ # After using this option, you must perform file system check and
69885
+ # repair procedures. This option is not recommended for Windows
69886
+ # instances. For more information, see [Troubleshoot Amazon EC2
69887
+ # instance stop issues][1] in the *Amazon EC2 User Guide*.
69799
69888
  #
69800
69889
  # Default: `false`
69890
+ #
69891
+ #
69892
+ #
69893
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html
69801
69894
  # @return [Boolean]
69802
69895
  #
69803
69896
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstancesRequest AWS API Documentation
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.516.0'
81
+ GEM_VERSION = '1.517.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -1851,7 +1851,8 @@ module Aws
1851
1851
  ],
1852
1852
  ?client_token: ::String,
1853
1853
  ?tier: ("free" | "advanced"),
1854
- ?enable_private_gua: bool
1854
+ ?enable_private_gua: bool,
1855
+ ?metered_account: ("ipam-owner" | "resource-owner")
1855
1856
  ) -> _CreateIpamResponseSuccess
1856
1857
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpamResponseSuccess
1857
1858
 
@@ -11078,7 +11079,8 @@ module Aws
11078
11079
  },
11079
11080
  ],
11080
11081
  ?tier: ("free" | "advanced"),
11081
- ?enable_private_gua: bool
11082
+ ?enable_private_gua: bool,
11083
+ ?metered_account: ("ipam-owner" | "resource-owner")
11082
11084
  ) -> _ModifyIpamResponseSuccess
11083
11085
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpamResponseSuccess
11084
11086
 
data/sig/types.rbs CHANGED
@@ -2192,6 +2192,7 @@ module Aws::EC2
2192
2192
  attr_accessor client_token: ::String
2193
2193
  attr_accessor tier: ("free" | "advanced")
2194
2194
  attr_accessor enable_private_gua: bool
2195
+ attr_accessor metered_account: ("ipam-owner" | "resource-owner")
2195
2196
  SENSITIVE: []
2196
2197
  end
2197
2198
 
@@ -10197,6 +10198,7 @@ module Aws::EC2
10197
10198
  attr_accessor state_message: ::String
10198
10199
  attr_accessor tier: ("free" | "advanced")
10199
10200
  attr_accessor enable_private_gua: bool
10201
+ attr_accessor metered_account: ("ipam-owner" | "resource-owner")
10200
10202
  SENSITIVE: []
10201
10203
  end
10202
10204
 
@@ -11578,6 +11580,7 @@ module Aws::EC2
11578
11580
  attr_accessor remove_operating_regions: ::Array[Types::RemoveIpamOperatingRegion]
11579
11581
  attr_accessor tier: ("free" | "advanced")
11580
11582
  attr_accessor enable_private_gua: bool
11583
+ attr_accessor metered_account: ("ipam-owner" | "resource-owner")
11581
11584
  SENSITIVE: []
11582
11585
  end
11583
11586
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.516.0
4
+ version: 1.517.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: 2025-04-22 00:00:00.000000000 Z
11
+ date: 2025-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core