aws-sdk-ec2 1.524.0 → 1.531.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.
@@ -1762,7 +1762,7 @@ module Aws::EC2
1762
1762
  # * `interface-type` - The type of network interface
1763
1763
  # (`api_gateway_managed` \| `aws_codestar_connections_managed` \|
1764
1764
  # `branch` \| `ec2_instance_connect_endpoint` \| `efa` \| `efa-only`
1765
- # \| `efs` \| `gateway_load_balancer` \|
1765
+ # \| `efs` \| `evs` \| `gateway_load_balancer` \|
1766
1766
  # `gateway_load_balancer_endpoint` \| `global_accelerator_managed` \|
1767
1767
  # `interface` \| `iot_rules_managed` \| `lambda` \| `load_balancer` \|
1768
1768
  # `nat_gateway` \| `network_load_balancer` \| `quicksight` \|
@@ -105,6 +105,12 @@ module Aws::EC2
105
105
  data[:carrier_ip]
106
106
  end
107
107
 
108
+ # The ID of the subnet where the IP address is allocated.
109
+ # @return [String]
110
+ def subnet_id
111
+ data[:subnet_id]
112
+ end
113
+
108
114
  # The service that manages the elastic IP address.
109
115
  #
110
116
  # <note markdown="1"> The only option supported today is `alb`.
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.524.0'
81
+ GEM_VERSION = '1.531.0'
82
82
 
83
83
  end
84
84
 
@@ -53,6 +53,9 @@ module Aws
53
53
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#carrier_ip-instance_method
54
54
  def carrier_ip: () -> ::String
55
55
 
56
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#subnet_id-instance_method
57
+ def subnet_id: () -> ::String
58
+
56
59
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#service_managed-instance_method
57
60
  def service_managed: () -> ("alb" | "nlb" | "rnat")
58
61