aws-sdk-ec2 1.537.0 → 1.539.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: 0cf45cd5f65f866ec3bfa41ac45e5592e04872fe1bd015e54299303e1696c76c
4
- data.tar.gz: 63f2e1acb0ffe28c877a0b936ce83296216f84d3371a4437d01b778ab11f9761
3
+ metadata.gz: 5fcb1f3b3f426fc544f45bb7b049601e9f51e9c1cbeaa9a94d780427efbbdcde
4
+ data.tar.gz: 55047d02e2d575bdde6d2f132f4420d9352a0e7bfbf12dcfea1c94b1b5d733d7
5
5
  SHA512:
6
- metadata.gz: e81cdfac67cb815fafe064b5626e58dc5a37398b584d6a70b785087c99af87632a03622a73f9ab3172cad3ff14cf437aba39e351d85b0a9605b1bbe9f008a53a
7
- data.tar.gz: 33835eae66060d917cc92c2667d859901df632a0b4fdafc06b8e84b461e88e59b5261f09b4859cfb9389f04e7329e3b6e0305d8c529aa3706f90e799753e729e
6
+ metadata.gz: be3bf610e719f8959dc1038e4ee021f9bb179760bdf73573de9b541533694ad166bcfc31dc4ef138c0326720099cfe4c734c42e70c32773d2c57918c3845dad7
7
+ data.tar.gz: b9ee2c6c44e4385401873fcf6ebc6063a14dc063da734a150c8ba18a25deaa5589483462a01e5879dc15f0ffb6093dc0a89590ed074afee9efb832626841524c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.539.0 (2025-07-17)
5
+ ------------------
6
+
7
+ * Feature - AWS Free Tier Version2 Support
8
+
9
+ 1.538.0 (2025-07-15)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for volume initialization status, which enables you to monitor when the initialization process for an EBS volume is completed. This release also adds IPv6 support to EC2 Instance Connect Endpoints, allowing you to connect to your EC2 Instance via a private IPv6 address.
13
+
4
14
  1.537.0 (2025-07-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.537.0
1
+ 1.539.0
@@ -7971,9 +7971,9 @@ module Aws::EC2
7971
7971
  # Creates an EC2 Instance Connect Endpoint.
7972
7972
  #
7973
7973
  # An EC2 Instance Connect Endpoint allows you to connect to an instance,
7974
- # without requiring the instance to have a public IPv4 address. For more
7975
- # information, see [Connect to your instances using EC2 Instance Connect
7976
- # Endpoint][1] in the *Amazon EC2 User Guide*.
7974
+ # without requiring the instance to have a public IPv4 or public IPv6
7975
+ # address. For more information, see [Connect to your instances using
7976
+ # EC2 Instance Connect Endpoint][1] in the *Amazon EC2 User Guide*.
7977
7977
  #
7978
7978
  #
7979
7979
  #
@@ -8002,6 +8002,12 @@ module Aws::EC2
8002
8002
  #
8003
8003
  # * `false` - Use the network interface IP address as the source.
8004
8004
  #
8005
+ # <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
8006
+ # Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
8007
+ # must be `ipv4`.
8008
+ #
8009
+ # </note>
8010
+ #
8005
8011
  # Default: `false`
8006
8012
  #
8007
8013
  # @option params [String] :client_token
@@ -8015,6 +8021,24 @@ module Aws::EC2
8015
8021
  # The tags to apply to the EC2 Instance Connect Endpoint during
8016
8022
  # creation.
8017
8023
  #
8024
+ # @option params [String] :ip_address_type
8025
+ # The IP address type of the endpoint.
8026
+ #
8027
+ # If no value is specified, the default value is determined by the IP
8028
+ # address type of the subnet:
8029
+ #
8030
+ # * `dualstack` - If the subnet has both IPv4 and IPv6 CIDRs
8031
+ #
8032
+ # * `ipv4` - If the subnet has only IPv4 CIDRs
8033
+ #
8034
+ # * `ipv6` - If the subnet has only IPv6 CIDRs
8035
+ #
8036
+ # <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
8037
+ # Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
8038
+ # must be `ipv4`.
8039
+ #
8040
+ # </note>
8041
+ #
8018
8042
  # @return [Types::CreateInstanceConnectEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8019
8043
  #
8020
8044
  # * {Types::CreateInstanceConnectEndpointResult#instance_connect_endpoint #instance_connect_endpoint} => Types::Ec2InstanceConnectEndpoint
@@ -8039,6 +8063,7 @@ module Aws::EC2
8039
8063
  # ],
8040
8064
  # },
8041
8065
  # ],
8066
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
8042
8067
  # })
8043
8068
  #
8044
8069
  # @example Response structure
@@ -8062,6 +8087,7 @@ module Aws::EC2
8062
8087
  # resp.instance_connect_endpoint.tags #=> Array
8063
8088
  # resp.instance_connect_endpoint.tags[0].key #=> String
8064
8089
  # resp.instance_connect_endpoint.tags[0].value #=> String
8090
+ # resp.instance_connect_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
8065
8091
  # resp.client_token #=> String
8066
8092
  #
8067
8093
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceConnectEndpoint AWS API Documentation
@@ -18054,6 +18080,7 @@ module Aws::EC2
18054
18080
  # resp.instance_connect_endpoint.tags #=> Array
18055
18081
  # resp.instance_connect_endpoint.tags[0].key #=> String
18056
18082
  # resp.instance_connect_endpoint.tags[0].value #=> String
18083
+ # resp.instance_connect_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
18057
18084
  #
18058
18085
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInstanceConnectEndpoint AWS API Documentation
18059
18086
  #
@@ -26768,6 +26795,10 @@ module Aws::EC2
26768
26795
  # * `ena-support` - A Boolean that indicates whether enhanced networking
26769
26796
  # with ENA is enabled.
26770
26797
  #
26798
+ # * `free-tier-eligible` - A Boolean that indicates whether this image
26799
+ # can be used under the Amazon Web Services Free Tier (`true` \|
26800
+ # `false`).
26801
+ #
26771
26802
  # * `hypervisor` - The hypervisor type (`ovm` \| `xen`).
26772
26803
  #
26773
26804
  # * `image-allowed` - A Boolean that indicates whether the image meets
@@ -26961,6 +26992,7 @@ module Aws::EC2
26961
26992
  # resp.images[0].image_allowed #=> Boolean
26962
26993
  # resp.images[0].source_image_id #=> String
26963
26994
  # resp.images[0].source_image_region #=> String
26995
+ # resp.images[0].free_tier_eligible #=> Boolean
26964
26996
  # resp.images[0].image_id #=> String
26965
26997
  # resp.images[0].image_location #=> String
26966
26998
  # resp.images[0].state #=> String, one of "pending", "available", "invalid", "deregistered", "transient", "failed", "error", "disabled"
@@ -27415,6 +27447,7 @@ module Aws::EC2
27415
27447
  # resp.instance_connect_endpoints[0].tags #=> Array
27416
27448
  # resp.instance_connect_endpoints[0].tags[0].key #=> String
27417
27449
  # resp.instance_connect_endpoints[0].tags[0].value #=> String
27450
+ # resp.instance_connect_endpoints[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
27418
27451
  # resp.next_token #=> String
27419
27452
  #
27420
27453
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceConnectEndpoints AWS API Documentation
@@ -40503,12 +40536,15 @@ module Aws::EC2
40503
40536
  # resp.volume_statuses[0].events[0].instance_id #=> String
40504
40537
  # resp.volume_statuses[0].volume_id #=> String
40505
40538
  # resp.volume_statuses[0].volume_status.details #=> Array
40506
- # resp.volume_statuses[0].volume_status.details[0].name #=> String, one of "io-enabled", "io-performance"
40539
+ # resp.volume_statuses[0].volume_status.details[0].name #=> String, one of "io-enabled", "io-performance", "initialization-state"
40507
40540
  # resp.volume_statuses[0].volume_status.details[0].status #=> String
40508
40541
  # resp.volume_statuses[0].volume_status.status #=> String, one of "ok", "impaired", "insufficient-data"
40509
40542
  # resp.volume_statuses[0].attachment_statuses #=> Array
40510
40543
  # resp.volume_statuses[0].attachment_statuses[0].io_performance #=> String
40511
40544
  # resp.volume_statuses[0].attachment_statuses[0].instance_id #=> String
40545
+ # resp.volume_statuses[0].initialization_status_details.initialization_type #=> String, one of "default", "provisioned-rate"
40546
+ # resp.volume_statuses[0].initialization_status_details.progress #=> Integer
40547
+ # resp.volume_statuses[0].initialization_status_details.estimated_time_to_complete_in_seconds #=> Integer
40512
40548
  # resp.volume_statuses[0].availability_zone_id #=> String
40513
40549
  #
40514
40550
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus AWS API Documentation
@@ -66362,7 +66398,7 @@ module Aws::EC2
66362
66398
  tracer: tracer
66363
66399
  )
66364
66400
  context[:gem_name] = 'aws-sdk-ec2'
66365
- context[:gem_version] = '1.537.0'
66401
+ context[:gem_version] = '1.539.0'
66366
66402
  Seahorse::Client::Request.new(handlers, context)
66367
66403
  end
66368
66404
 
@@ -1856,6 +1856,8 @@ module Aws::EC2
1856
1856
  InferenceDeviceMemoryInfo = Shapes::StructureShape.new(name: 'InferenceDeviceMemoryInfo')
1857
1857
  InferenceDeviceMemorySize = Shapes::IntegerShape.new(name: 'InferenceDeviceMemorySize')
1858
1858
  InferenceDeviceName = Shapes::StringShape.new(name: 'InferenceDeviceName')
1859
+ InitializationStatusDetails = Shapes::StructureShape.new(name: 'InitializationStatusDetails')
1860
+ InitializationType = Shapes::StringShape.new(name: 'InitializationType')
1859
1861
  InsideCidrBlocksStringList = Shapes::ListShape.new(name: 'InsideCidrBlocksStringList')
1860
1862
  Instance = Shapes::StructureShape.new(name: 'Instance')
1861
1863
  InstanceAttachmentEnaSrdSpecification = Shapes::StructureShape.new(name: 'InstanceAttachmentEnaSrdSpecification')
@@ -5366,6 +5368,7 @@ module Aws::EC2
5366
5368
  CreateInstanceConnectEndpointRequest.add_member(:preserve_client_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "PreserveClientIp"))
5367
5369
  CreateInstanceConnectEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
5368
5370
  CreateInstanceConnectEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5371
+ CreateInstanceConnectEndpointRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
5369
5372
  CreateInstanceConnectEndpointRequest.struct_class = Types::CreateInstanceConnectEndpointRequest
5370
5373
 
5371
5374
  CreateInstanceConnectEndpointResult.add_member(:instance_connect_endpoint, Shapes::ShapeRef.new(shape: Ec2InstanceConnectEndpoint, location_name: "instanceConnectEndpoint"))
@@ -9415,6 +9418,7 @@ module Aws::EC2
9415
9418
  Ec2InstanceConnectEndpoint.add_member(:preserve_client_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "preserveClientIp"))
9416
9419
  Ec2InstanceConnectEndpoint.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdSet, location_name: "securityGroupIdSet"))
9417
9420
  Ec2InstanceConnectEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
9421
+ Ec2InstanceConnectEndpoint.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
9418
9422
  Ec2InstanceConnectEndpoint.struct_class = Types::Ec2InstanceConnectEndpoint
9419
9423
 
9420
9424
  EfaInfo.add_member(:maximum_efa_interfaces, Shapes::ShapeRef.new(shape: MaximumEfaInterfaces, location_name: "maximumEfaInterfaces"))
@@ -10883,6 +10887,7 @@ module Aws::EC2
10883
10887
  Image.add_member(:image_allowed, Shapes::ShapeRef.new(shape: Boolean, location_name: "imageAllowed"))
10884
10888
  Image.add_member(:source_image_id, Shapes::ShapeRef.new(shape: String, location_name: "sourceImageId"))
10885
10889
  Image.add_member(:source_image_region, Shapes::ShapeRef.new(shape: String, location_name: "sourceImageRegion"))
10890
+ Image.add_member(:free_tier_eligible, Shapes::ShapeRef.new(shape: Boolean, location_name: "freeTierEligible"))
10886
10891
  Image.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
10887
10892
  Image.add_member(:image_location, Shapes::ShapeRef.new(shape: String, location_name: "imageLocation"))
10888
10893
  Image.add_member(:state, Shapes::ShapeRef.new(shape: ImageState, location_name: "imageState"))
@@ -11151,6 +11156,11 @@ module Aws::EC2
11151
11156
  InferenceDeviceMemoryInfo.add_member(:size_in_mi_b, Shapes::ShapeRef.new(shape: InferenceDeviceMemorySize, location_name: "sizeInMiB"))
11152
11157
  InferenceDeviceMemoryInfo.struct_class = Types::InferenceDeviceMemoryInfo
11153
11158
 
11159
+ InitializationStatusDetails.add_member(:initialization_type, Shapes::ShapeRef.new(shape: InitializationType, location_name: "initializationType"))
11160
+ InitializationStatusDetails.add_member(:progress, Shapes::ShapeRef.new(shape: Long, location_name: "progress"))
11161
+ InitializationStatusDetails.add_member(:estimated_time_to_complete_in_seconds, Shapes::ShapeRef.new(shape: Long, location_name: "estimatedTimeToCompleteInSeconds"))
11162
+ InitializationStatusDetails.struct_class = Types::InitializationStatusDetails
11163
+
11154
11164
  InsideCidrBlocksStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
11155
11165
 
11156
11166
  Instance.add_member(:architecture, Shapes::ShapeRef.new(shape: ArchitectureValues, location_name: "architecture"))
@@ -17300,6 +17310,7 @@ module Aws::EC2
17300
17310
  VolumeStatusItem.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
17301
17311
  VolumeStatusItem.add_member(:volume_status, Shapes::ShapeRef.new(shape: VolumeStatusInfo, location_name: "volumeStatus"))
17302
17312
  VolumeStatusItem.add_member(:attachment_statuses, Shapes::ShapeRef.new(shape: VolumeStatusAttachmentStatusList, location_name: "attachmentStatuses"))
17313
+ VolumeStatusItem.add_member(:initialization_status_details, Shapes::ShapeRef.new(shape: InitializationStatusDetails, location_name: "initializationStatusDetails"))
17303
17314
  VolumeStatusItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
17304
17315
  VolumeStatusItem.struct_class = Types::VolumeStatusItem
17305
17316
 
@@ -274,6 +274,18 @@ module Aws::EC2
274
274
  data[:source_image_region]
275
275
  end
276
276
 
277
+ # Indicates whether the image is eligible for Amazon Web Services Free
278
+ # Tier.
279
+ #
280
+ # * If `true`, the AMI is eligible for Free Tier and can be used to
281
+ # launch instances under the Free Tier limits.
282
+ #
283
+ # * If `false`, the AMI is not eligible for Free Tier.
284
+ # @return [Boolean]
285
+ def free_tier_eligible
286
+ data[:free_tier_eligible]
287
+ end
288
+
277
289
  # The location of the AMI.
278
290
  # @return [String]
279
291
  def image_location
@@ -2385,6 +2385,10 @@ module Aws::EC2
2385
2385
  # * `ena-support` - A Boolean that indicates whether enhanced networking
2386
2386
  # with ENA is enabled.
2387
2387
  #
2388
+ # * `free-tier-eligible` - A Boolean that indicates whether this image
2389
+ # can be used under the Amazon Web Services Free Tier (`true` \|
2390
+ # `false`).
2391
+ #
2388
2392
  # * `hypervisor` - The hypervisor type (`ovm` \| `xen`).
2389
2393
  #
2390
2394
  # * `image-allowed` - A Boolean that indicates whether the image meets
@@ -9769,6 +9769,12 @@ module Aws::EC2
9769
9769
  #
9770
9770
  # * `false` - Use the network interface IP address as the source.
9771
9771
  #
9772
+ # <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
9773
+ # Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
9774
+ # must be `ipv4`.
9775
+ #
9776
+ # </note>
9777
+ #
9772
9778
  # Default: `false`
9773
9779
  # @return [Boolean]
9774
9780
  #
@@ -9785,6 +9791,25 @@ module Aws::EC2
9785
9791
  # creation.
9786
9792
  # @return [Array<Types::TagSpecification>]
9787
9793
  #
9794
+ # @!attribute [rw] ip_address_type
9795
+ # The IP address type of the endpoint.
9796
+ #
9797
+ # If no value is specified, the default value is determined by the IP
9798
+ # address type of the subnet:
9799
+ #
9800
+ # * `dualstack` - If the subnet has both IPv4 and IPv6 CIDRs
9801
+ #
9802
+ # * `ipv4` - If the subnet has only IPv4 CIDRs
9803
+ #
9804
+ # * `ipv6` - If the subnet has only IPv6 CIDRs
9805
+ #
9806
+ # <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
9807
+ # Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
9808
+ # must be `ipv4`.
9809
+ #
9810
+ # </note>
9811
+ # @return [String]
9812
+ #
9788
9813
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceConnectEndpointRequest AWS API Documentation
9789
9814
  #
9790
9815
  class CreateInstanceConnectEndpointRequest < Struct.new(
@@ -9793,7 +9818,8 @@ module Aws::EC2
9793
9818
  :security_group_ids,
9794
9819
  :preserve_client_ip,
9795
9820
  :client_token,
9796
- :tag_specifications)
9821
+ :tag_specifications,
9822
+ :ip_address_type)
9797
9823
  SENSITIVE = []
9798
9824
  include Aws::Structure
9799
9825
  end
@@ -22514,6 +22540,10 @@ module Aws::EC2
22514
22540
  # * `ena-support` - A Boolean that indicates whether enhanced
22515
22541
  # networking with ENA is enabled.
22516
22542
  #
22543
+ # * `free-tier-eligible` - A Boolean that indicates whether this image
22544
+ # can be used under the Amazon Web Services Free Tier (`true` \|
22545
+ # `false`).
22546
+ #
22517
22547
  # * `hypervisor` - The hypervisor type (`ovm` \| `xen`).
22518
22548
  #
22519
22549
  # * `image-allowed` - A Boolean that indicates whether the image meets
@@ -34932,6 +34962,8 @@ module Aws::EC2
34932
34962
  # @return [String]
34933
34963
  #
34934
34964
  # @!attribute [rw] fips_dns_name
34965
+ # The Federal Information Processing Standards (FIPS) compliant DNS
34966
+ # name of the EC2 Instance Connect Endpoint.
34935
34967
  # @return [String]
34936
34968
  #
34937
34969
  # @!attribute [rw] network_interface_ids
@@ -34982,6 +35014,10 @@ module Aws::EC2
34982
35014
  # The tags assigned to the EC2 Instance Connect Endpoint.
34983
35015
  # @return [Array<Types::Tag>]
34984
35016
  #
35017
+ # @!attribute [rw] ip_address_type
35018
+ # The IP address type of the endpoint.
35019
+ # @return [String]
35020
+ #
34985
35021
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ec2InstanceConnectEndpoint AWS API Documentation
34986
35022
  #
34987
35023
  class Ec2InstanceConnectEndpoint < Struct.new(
@@ -34999,7 +35035,8 @@ module Aws::EC2
34999
35035
  :subnet_id,
35000
35036
  :preserve_client_ip,
35001
35037
  :security_group_ids,
35002
- :tags)
35038
+ :tags,
35039
+ :ip_address_type)
35003
35040
  SENSITIVE = []
35004
35041
  include Aws::Structure
35005
35042
  end
@@ -42960,6 +42997,16 @@ module Aws::EC2
42960
42997
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify-source-ami-used-to-create-new-ami.html
42961
42998
  # @return [String]
42962
42999
  #
43000
+ # @!attribute [rw] free_tier_eligible
43001
+ # Indicates whether the image is eligible for Amazon Web Services Free
43002
+ # Tier.
43003
+ #
43004
+ # * If `true`, the AMI is eligible for Free Tier and can be used to
43005
+ # launch instances under the Free Tier limits.
43006
+ #
43007
+ # * If `false`, the AMI is not eligible for Free Tier.
43008
+ # @return [Boolean]
43009
+ #
42963
43010
  # @!attribute [rw] image_id
42964
43011
  # The ID of the AMI.
42965
43012
  # @return [String]
@@ -43041,6 +43088,7 @@ module Aws::EC2
43041
43088
  :image_allowed,
43042
43089
  :source_image_id,
43043
43090
  :source_image_region,
43091
+ :free_tier_eligible,
43044
43092
  :image_id,
43045
43093
  :image_location,
43046
43094
  :state,
@@ -44403,6 +44451,46 @@ module Aws::EC2
44403
44451
  include Aws::Structure
44404
44452
  end
44405
44453
 
44454
+ # Information about the volume initialization. For more information, see
44455
+ # [Initialize Amazon EBS volumes][1].
44456
+ #
44457
+ #
44458
+ #
44459
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
44460
+ #
44461
+ # @!attribute [rw] initialization_type
44462
+ # The method used for volume initialization. Possible values include:
44463
+ #
44464
+ # * `default` - Volume initialized using the default volume
44465
+ # initialization rate or fast snapshot restore.
44466
+ #
44467
+ # * `provisioned-rate` - Volume initialized using an Amazon EBS
44468
+ # Provisioned Rate for Volume Initialization.
44469
+ # @return [String]
44470
+ #
44471
+ # @!attribute [rw] progress
44472
+ # The current volume initialization progress as a percentage (0-100).
44473
+ # Returns `100` when volume initialization has completed.
44474
+ # @return [Integer]
44475
+ #
44476
+ # @!attribute [rw] estimated_time_to_complete_in_seconds
44477
+ # The estimated remaining time, in seconds, for volume initialization
44478
+ # to complete. Returns `0` when volume initialization has completed.
44479
+ #
44480
+ # Only available for volumes created with Amazon EBS Provisioned Rate
44481
+ # for Volume Initialization.
44482
+ # @return [Integer]
44483
+ #
44484
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InitializationStatusDetails AWS API Documentation
44485
+ #
44486
+ class InitializationStatusDetails < Struct.new(
44487
+ :initialization_type,
44488
+ :progress,
44489
+ :estimated_time_to_complete_in_seconds)
44490
+ SENSITIVE = []
44491
+ include Aws::Structure
44492
+ end
44493
+
44406
44494
  # Describes an instance.
44407
44495
  #
44408
44496
  # @!attribute [rw] architecture
@@ -76956,6 +77044,21 @@ module Aws::EC2
76956
77044
  #
76957
77045
  # @!attribute [rw] name
76958
77046
  # The name of the volume status.
77047
+ #
77048
+ # * `io-enabled` - Indicates the volume I/O status. For more
77049
+ # information, see [Amazon EBS volume status checks][1].
77050
+ #
77051
+ # * `io-performance` - Indicates the volume performance status. For
77052
+ # more information, see [Amazon EBS volume status checks][1].
77053
+ #
77054
+ # * `initialization-state` - Indicates the status of the volume
77055
+ # initialization process. For more information, see [Initialize
77056
+ # Amazon EBS volumes][2].
77057
+ #
77058
+ #
77059
+ #
77060
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-checks.html
77061
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
76959
77062
  # @return [String]
76960
77063
  #
76961
77064
  # @!attribute [rw] status
@@ -77059,6 +77162,20 @@ module Aws::EC2
77059
77162
  # Information about the instances to which the volume is attached.
77060
77163
  # @return [Array<Types::VolumeStatusAttachmentStatus>]
77061
77164
  #
77165
+ # @!attribute [rw] initialization_status_details
77166
+ # Information about the volume initialization. It can take up to 5
77167
+ # minutes for the volume initialization information to be updated.
77168
+ #
77169
+ # Only available for volumes created from snapshots. Not available for
77170
+ # empty volumes created without a snapshot.
77171
+ #
77172
+ # For more information, see [ Initialize Amazon EBS volumes][1].
77173
+ #
77174
+ #
77175
+ #
77176
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
77177
+ # @return [Types::InitializationStatusDetails]
77178
+ #
77062
77179
  # @!attribute [rw] availability_zone_id
77063
77180
  # The ID of the Availability Zone.
77064
77181
  # @return [String]
@@ -77073,6 +77190,7 @@ module Aws::EC2
77073
77190
  :volume_id,
77074
77191
  :volume_status,
77075
77192
  :attachment_statuses,
77193
+ :initialization_status_details,
77076
77194
  :availability_zone_id)
77077
77195
  SENSITIVE = []
77078
77196
  include Aws::Structure
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.537.0'
81
+ GEM_VERSION = '1.539.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -1770,7 +1770,8 @@ module Aws
1770
1770
  },
1771
1771
  ]?
1772
1772
  },
1773
- ]
1773
+ ],
1774
+ ?ip_address_type: ("ipv4" | "dualstack" | "ipv6")
1774
1775
  ) -> _CreateInstanceConnectEndpointResponseSuccess
1775
1776
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceConnectEndpointResponseSuccess
1776
1777
 
data/sig/image.rbs CHANGED
@@ -90,6 +90,9 @@ module Aws
90
90
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#source_image_region-instance_method
91
91
  def source_image_region: () -> ::String
92
92
 
93
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#free_tier_eligible-instance_method
94
+ def free_tier_eligible: () -> bool
95
+
93
96
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#image_location-instance_method
94
97
  def image_location: () -> ::String
95
98
 
data/sig/types.rbs CHANGED
@@ -2165,6 +2165,7 @@ module Aws::EC2
2165
2165
  attr_accessor preserve_client_ip: bool
2166
2166
  attr_accessor client_token: ::String
2167
2167
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2168
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "ipv6")
2168
2169
  SENSITIVE: []
2169
2170
  end
2170
2171
 
@@ -7694,6 +7695,7 @@ module Aws::EC2
7694
7695
  attr_accessor preserve_client_ip: bool
7695
7696
  attr_accessor security_group_ids: ::Array[::String]
7696
7697
  attr_accessor tags: ::Array[Types::Tag]
7698
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "ipv6")
7697
7699
  SENSITIVE: []
7698
7700
  end
7699
7701
 
@@ -9528,6 +9530,7 @@ module Aws::EC2
9528
9530
  attr_accessor image_allowed: bool
9529
9531
  attr_accessor source_image_id: ::String
9530
9532
  attr_accessor source_image_region: ::String
9533
+ attr_accessor free_tier_eligible: bool
9531
9534
  attr_accessor image_id: ::String
9532
9535
  attr_accessor image_location: ::String
9533
9536
  attr_accessor state: ("pending" | "available" | "invalid" | "deregistered" | "transient" | "failed" | "error" | "disabled")
@@ -9821,6 +9824,13 @@ module Aws::EC2
9821
9824
  SENSITIVE: []
9822
9825
  end
9823
9826
 
9827
+ class InitializationStatusDetails
9828
+ attr_accessor initialization_type: ("default" | "provisioned-rate")
9829
+ attr_accessor progress: ::Integer
9830
+ attr_accessor estimated_time_to_complete_in_seconds: ::Integer
9831
+ SENSITIVE: []
9832
+ end
9833
+
9824
9834
  class Instance
9825
9835
  attr_accessor architecture: ("i386" | "x86_64" | "arm64" | "x86_64_mac" | "arm64_mac")
9826
9836
  attr_accessor block_device_mappings: ::Array[Types::InstanceBlockDeviceMapping]
@@ -16694,7 +16704,7 @@ module Aws::EC2
16694
16704
  end
16695
16705
 
16696
16706
  class VolumeStatusDetails
16697
- attr_accessor name: ("io-enabled" | "io-performance")
16707
+ attr_accessor name: ("io-enabled" | "io-performance" | "initialization-state")
16698
16708
  attr_accessor status: ::String
16699
16709
  SENSITIVE: []
16700
16710
  end
@@ -16723,6 +16733,7 @@ module Aws::EC2
16723
16733
  attr_accessor volume_id: ::String
16724
16734
  attr_accessor volume_status: Types::VolumeStatusInfo
16725
16735
  attr_accessor attachment_statuses: ::Array[Types::VolumeStatusAttachmentStatus]
16736
+ attr_accessor initialization_status_details: Types::InitializationStatusDetails
16726
16737
  attr_accessor availability_zone_id: ::String
16727
16738
  SENSITIVE: []
16728
16739
  end
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.537.0
4
+ version: 1.539.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services