aws-sdk-ec2 1.549.0 → 1.551.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +23 -4
- data/lib/aws-sdk-ec2/client_api.rb +8 -1
- data/lib/aws-sdk-ec2/types.rb +42 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 304e7b56bbd940a0ce3eb272e96358b662a557fa7bc77d6e2241eaa9d4ded75d
|
4
|
+
data.tar.gz: 79ca90b6715ebfe2da3e48921b6d9d83e382643c23c7fb8ebc3044dc31659fbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff4ede6a5d3c3f518a223f8bbd05dd1af062f29c851d67c957dd74eb7fb769e41e9b16fd88cf6243482c9f6224d881a4e2d6eead9584cadbc3224509890abbea
|
7
|
+
data.tar.gz: 104f27aec3bbffae01129f71b61aa11e56868571f6df29bffc519f3c07e3ec198c7d61c7cc09ad99ac3e578c7de5af93927f04cfe6d76dc3ec35869845bb3ac8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.551.0 (2025-08-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added IPv6 support for AWS Client VPN.
|
8
|
+
|
9
|
+
1.550.0 (2025-08-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for "warning" volume status.
|
13
|
+
|
4
14
|
1.549.0 (2025-08-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.551.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -5994,7 +5994,7 @@ module Aws::EC2
|
|
5994
5994
|
# is the destination endpoint at which all client VPN sessions are
|
5995
5995
|
# terminated.
|
5996
5996
|
#
|
5997
|
-
# @option params [
|
5997
|
+
# @option params [String] :client_cidr_block
|
5998
5998
|
# The IPv4 address range, in CIDR notation, from which to assign client
|
5999
5999
|
# IP addresses. The address range cannot overlap with the local CIDR of
|
6000
6000
|
# the VPC in which the associated subnet is located, or the routes that
|
@@ -6135,6 +6135,20 @@ module Aws::EC2
|
|
6135
6135
|
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
6136
6136
|
# VPN attempts to reconnect automatically. The default value is `true`.
|
6137
6137
|
#
|
6138
|
+
# @option params [String] :endpoint_ip_address_type
|
6139
|
+
# The IP address type for the Client VPN endpoint. Valid values are
|
6140
|
+
# `ipv4` (default) for IPv4 addressing only, `ipv6` for IPv6 addressing
|
6141
|
+
# only, or `dual-stack` for both IPv4 and IPv6 addressing. When set to
|
6142
|
+
# `dual-stack,` clients can connect to the endpoint using either IPv4 or
|
6143
|
+
# IPv6 addresses..
|
6144
|
+
#
|
6145
|
+
# @option params [String] :traffic_ip_address_type
|
6146
|
+
# The IP address type for traffic within the Client VPN tunnel. Valid
|
6147
|
+
# values are `ipv4` (default) for IPv4 traffic only, `ipv6` for IPv6
|
6148
|
+
# addressing only, or `dual-stack` for both IPv4 and IPv6 traffic. When
|
6149
|
+
# set to `dual-stack`, clients can access both IPv4 and IPv6 resources
|
6150
|
+
# through the VPN .
|
6151
|
+
#
|
6138
6152
|
# @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6139
6153
|
#
|
6140
6154
|
# * {Types::CreateClientVpnEndpointResult#client_vpn_endpoint_id #client_vpn_endpoint_id} => String
|
@@ -6144,7 +6158,7 @@ module Aws::EC2
|
|
6144
6158
|
# @example Request syntax with placeholder values
|
6145
6159
|
#
|
6146
6160
|
# resp = client.create_client_vpn_endpoint({
|
6147
|
-
# client_cidr_block: "String",
|
6161
|
+
# client_cidr_block: "String",
|
6148
6162
|
# server_certificate_arn: "String", # required
|
6149
6163
|
# authentication_options: [ # required
|
6150
6164
|
# {
|
@@ -6200,6 +6214,8 @@ module Aws::EC2
|
|
6200
6214
|
# enforced: false,
|
6201
6215
|
# },
|
6202
6216
|
# disconnect_on_session_timeout: false,
|
6217
|
+
# endpoint_ip_address_type: "ipv4", # accepts ipv4, ipv6, dual-stack
|
6218
|
+
# traffic_ip_address_type: "ipv4", # accepts ipv4, ipv6, dual-stack
|
6203
6219
|
# })
|
6204
6220
|
#
|
6205
6221
|
# @example Response structure
|
@@ -24045,6 +24061,7 @@ module Aws::EC2
|
|
24045
24061
|
# resp.connections[0].ingress_packets #=> String
|
24046
24062
|
# resp.connections[0].egress_packets #=> String
|
24047
24063
|
# resp.connections[0].client_ip #=> String
|
24064
|
+
# resp.connections[0].client_ipv_6_address #=> String
|
24048
24065
|
# resp.connections[0].common_name #=> String
|
24049
24066
|
# resp.connections[0].status.code #=> String, one of "active", "failed-to-terminate", "terminating", "terminated"
|
24050
24067
|
# resp.connections[0].status.message #=> String
|
@@ -24156,6 +24173,8 @@ module Aws::EC2
|
|
24156
24173
|
# resp.client_vpn_endpoints[0].client_login_banner_options.banner_text #=> String
|
24157
24174
|
# resp.client_vpn_endpoints[0].client_route_enforcement_options.enforced #=> Boolean
|
24158
24175
|
# resp.client_vpn_endpoints[0].disconnect_on_session_timeout #=> Boolean
|
24176
|
+
# resp.client_vpn_endpoints[0].endpoint_ip_address_type #=> String, one of "ipv4", "ipv6", "dual-stack"
|
24177
|
+
# resp.client_vpn_endpoints[0].traffic_ip_address_type #=> String, one of "ipv4", "ipv6", "dual-stack"
|
24159
24178
|
# resp.next_token #=> String
|
24160
24179
|
#
|
24161
24180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnEndpoints AWS API Documentation
|
@@ -40616,7 +40635,7 @@ module Aws::EC2
|
|
40616
40635
|
# resp.volume_statuses[0].volume_status.details #=> Array
|
40617
40636
|
# resp.volume_statuses[0].volume_status.details[0].name #=> String, one of "io-enabled", "io-performance", "initialization-state"
|
40618
40637
|
# resp.volume_statuses[0].volume_status.details[0].status #=> String
|
40619
|
-
# resp.volume_statuses[0].volume_status.status #=> String, one of "ok", "impaired", "insufficient-data"
|
40638
|
+
# resp.volume_statuses[0].volume_status.status #=> String, one of "ok", "impaired", "insufficient-data", "warning"
|
40620
40639
|
# resp.volume_statuses[0].attachment_statuses #=> Array
|
40621
40640
|
# resp.volume_statuses[0].attachment_statuses[0].io_performance #=> String
|
40622
40641
|
# resp.volume_statuses[0].attachment_statuses[0].instance_id #=> String
|
@@ -66598,7 +66617,7 @@ module Aws::EC2
|
|
66598
66617
|
tracer: tracer
|
66599
66618
|
)
|
66600
66619
|
context[:gem_name] = 'aws-sdk-ec2'
|
66601
|
-
context[:gem_version] = '1.
|
66620
|
+
context[:gem_version] = '1.551.0'
|
66602
66621
|
Seahorse::Client::Request.new(handlers, context)
|
66603
66622
|
end
|
66604
66623
|
|
@@ -1501,6 +1501,7 @@ module Aws::EC2
|
|
1501
1501
|
EnclaveOptionsRequest = Shapes::StructureShape.new(name: 'EnclaveOptionsRequest')
|
1502
1502
|
EncryptionInTransitSupported = Shapes::BooleanShape.new(name: 'EncryptionInTransitSupported')
|
1503
1503
|
EndDateType = Shapes::StringShape.new(name: 'EndDateType')
|
1504
|
+
EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
|
1504
1505
|
EndpointSet = Shapes::ListShape.new(name: 'EndpointSet')
|
1505
1506
|
EphemeralNvmeSupport = Shapes::StringShape.new(name: 'EphemeralNvmeSupport')
|
1506
1507
|
ErrorSet = Shapes::ListShape.new(name: 'ErrorSet')
|
@@ -3227,6 +3228,7 @@ module Aws::EC2
|
|
3227
3228
|
TotalNeuronMemory = Shapes::IntegerShape.new(name: 'TotalNeuronMemory')
|
3228
3229
|
TpmSupportValues = Shapes::StringShape.new(name: 'TpmSupportValues')
|
3229
3230
|
TrafficDirection = Shapes::StringShape.new(name: 'TrafficDirection')
|
3231
|
+
TrafficIpAddressType = Shapes::StringShape.new(name: 'TrafficIpAddressType')
|
3230
3232
|
TrafficMirrorFilter = Shapes::StructureShape.new(name: 'TrafficMirrorFilter')
|
3231
3233
|
TrafficMirrorFilterId = Shapes::StringShape.new(name: 'TrafficMirrorFilterId')
|
3232
3234
|
TrafficMirrorFilterIdList = Shapes::ListShape.new(name: 'TrafficMirrorFilterIdList')
|
@@ -4874,6 +4876,7 @@ module Aws::EC2
|
|
4874
4876
|
ClientVpnConnection.add_member(:ingress_packets, Shapes::ShapeRef.new(shape: String, location_name: "ingressPackets"))
|
4875
4877
|
ClientVpnConnection.add_member(:egress_packets, Shapes::ShapeRef.new(shape: String, location_name: "egressPackets"))
|
4876
4878
|
ClientVpnConnection.add_member(:client_ip, Shapes::ShapeRef.new(shape: String, location_name: "clientIp"))
|
4879
|
+
ClientVpnConnection.add_member(:client_ipv_6_address, Shapes::ShapeRef.new(shape: String, location_name: "clientIpv6Address"))
|
4877
4880
|
ClientVpnConnection.add_member(:common_name, Shapes::ShapeRef.new(shape: String, location_name: "commonName"))
|
4878
4881
|
ClientVpnConnection.add_member(:status, Shapes::ShapeRef.new(shape: ClientVpnConnectionStatus, location_name: "status"))
|
4879
4882
|
ClientVpnConnection.add_member(:connection_end_time, Shapes::ShapeRef.new(shape: String, location_name: "connectionEndTime"))
|
@@ -4911,6 +4914,8 @@ module Aws::EC2
|
|
4911
4914
|
ClientVpnEndpoint.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerResponseOptions, location_name: "clientLoginBannerOptions"))
|
4912
4915
|
ClientVpnEndpoint.add_member(:client_route_enforcement_options, Shapes::ShapeRef.new(shape: ClientRouteEnforcementResponseOptions, location_name: "clientRouteEnforcementOptions"))
|
4913
4916
|
ClientVpnEndpoint.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "disconnectOnSessionTimeout"))
|
4917
|
+
ClientVpnEndpoint.add_member(:endpoint_ip_address_type, Shapes::ShapeRef.new(shape: EndpointIpAddressType, location_name: "endpointIpAddressType"))
|
4918
|
+
ClientVpnEndpoint.add_member(:traffic_ip_address_type, Shapes::ShapeRef.new(shape: TrafficIpAddressType, location_name: "trafficIpAddressType"))
|
4914
4919
|
ClientVpnEndpoint.struct_class = Types::ClientVpnEndpoint
|
4915
4920
|
|
4916
4921
|
ClientVpnEndpointAttributeStatus.add_member(:code, Shapes::ShapeRef.new(shape: ClientVpnEndpointAttributeStatusCode, location_name: "code"))
|
@@ -5172,7 +5177,7 @@ module Aws::EC2
|
|
5172
5177
|
CreateCarrierGatewayResult.add_member(:carrier_gateway, Shapes::ShapeRef.new(shape: CarrierGateway, location_name: "carrierGateway"))
|
5173
5178
|
CreateCarrierGatewayResult.struct_class = Types::CreateCarrierGatewayResult
|
5174
5179
|
|
5175
|
-
CreateClientVpnEndpointRequest.add_member(:client_cidr_block, Shapes::ShapeRef.new(shape: String,
|
5180
|
+
CreateClientVpnEndpointRequest.add_member(:client_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "ClientCidrBlock"))
|
5176
5181
|
CreateClientVpnEndpointRequest.add_member(:server_certificate_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServerCertificateArn"))
|
5177
5182
|
CreateClientVpnEndpointRequest.add_member(:authentication_options, Shapes::ShapeRef.new(shape: ClientVpnAuthenticationRequestList, required: true, location_name: "Authentication"))
|
5178
5183
|
CreateClientVpnEndpointRequest.add_member(:connection_log_options, Shapes::ShapeRef.new(shape: ConnectionLogOptions, required: true, location_name: "ConnectionLogOptions"))
|
@@ -5192,6 +5197,8 @@ module Aws::EC2
|
|
5192
5197
|
CreateClientVpnEndpointRequest.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerOptions, location_name: "ClientLoginBannerOptions"))
|
5193
5198
|
CreateClientVpnEndpointRequest.add_member(:client_route_enforcement_options, Shapes::ShapeRef.new(shape: ClientRouteEnforcementOptions, location_name: "ClientRouteEnforcementOptions"))
|
5194
5199
|
CreateClientVpnEndpointRequest.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisconnectOnSessionTimeout"))
|
5200
|
+
CreateClientVpnEndpointRequest.add_member(:endpoint_ip_address_type, Shapes::ShapeRef.new(shape: EndpointIpAddressType, location_name: "EndpointIpAddressType"))
|
5201
|
+
CreateClientVpnEndpointRequest.add_member(:traffic_ip_address_type, Shapes::ShapeRef.new(shape: TrafficIpAddressType, location_name: "TrafficIpAddressType"))
|
5195
5202
|
CreateClientVpnEndpointRequest.struct_class = Types::CreateClientVpnEndpointRequest
|
5196
5203
|
|
5197
5204
|
CreateClientVpnEndpointResult.add_member(:client_vpn_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "clientVpnEndpointId"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6539,6 +6539,13 @@ module Aws::EC2
|
|
6539
6539
|
# The IP address of the client.
|
6540
6540
|
# @return [String]
|
6541
6541
|
#
|
6542
|
+
# @!attribute [rw] client_ipv_6_address
|
6543
|
+
# The IPv6 address assigned to the client connection when using a
|
6544
|
+
# dual-stack Client VPN endpoint. This field is only populated when
|
6545
|
+
# the endpoint is configured for dual-stack addressing, and the client
|
6546
|
+
# is using IPv6 for connectivity.
|
6547
|
+
# @return [String]
|
6548
|
+
#
|
6542
6549
|
# @!attribute [rw] common_name
|
6543
6550
|
# The common name associated with the client. This is either the name
|
6544
6551
|
# of the client certificate, or the Active Directory user name.
|
@@ -6570,6 +6577,7 @@ module Aws::EC2
|
|
6570
6577
|
:ingress_packets,
|
6571
6578
|
:egress_packets,
|
6572
6579
|
:client_ip,
|
6580
|
+
:client_ipv_6_address,
|
6573
6581
|
:common_name,
|
6574
6582
|
:status,
|
6575
6583
|
:connection_end_time,
|
@@ -6733,6 +6741,18 @@ module Aws::EC2
|
|
6733
6741
|
# reconnect automatically. The default value is `true`.
|
6734
6742
|
# @return [Boolean]
|
6735
6743
|
#
|
6744
|
+
# @!attribute [rw] endpoint_ip_address_type
|
6745
|
+
# The IP address type of the Client VPN endpoint. Possible values are
|
6746
|
+
# `ipv4` for IPv4 addressing only, `ipv6` for IPv6 addressing only, or
|
6747
|
+
# `dual-stack `for both IPv4 and IPv6 addressing.
|
6748
|
+
# @return [String]
|
6749
|
+
#
|
6750
|
+
# @!attribute [rw] traffic_ip_address_type
|
6751
|
+
# The IP address type of the Client VPN endpoint. Possible values are
|
6752
|
+
# either `ipv4` for IPv4 addressing only, `ipv6` for IPv6 addressing
|
6753
|
+
# only, or `dual-stack` for both IPv4 and IPv6 addressing.
|
6754
|
+
# @return [String]
|
6755
|
+
#
|
6736
6756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
|
6737
6757
|
#
|
6738
6758
|
class ClientVpnEndpoint < Struct.new(
|
@@ -6760,7 +6780,9 @@ module Aws::EC2
|
|
6760
6780
|
:session_timeout_hours,
|
6761
6781
|
:client_login_banner_options,
|
6762
6782
|
:client_route_enforcement_options,
|
6763
|
-
:disconnect_on_session_timeout
|
6783
|
+
:disconnect_on_session_timeout,
|
6784
|
+
:endpoint_ip_address_type,
|
6785
|
+
:traffic_ip_address_type)
|
6764
6786
|
SENSITIVE = []
|
6765
6787
|
include Aws::Structure
|
6766
6788
|
end
|
@@ -8600,6 +8622,22 @@ module Aws::EC2
|
|
8600
8622
|
# `true`.
|
8601
8623
|
# @return [Boolean]
|
8602
8624
|
#
|
8625
|
+
# @!attribute [rw] endpoint_ip_address_type
|
8626
|
+
# The IP address type for the Client VPN endpoint. Valid values are
|
8627
|
+
# `ipv4` (default) for IPv4 addressing only, `ipv6` for IPv6
|
8628
|
+
# addressing only, or `dual-stack` for both IPv4 and IPv6 addressing.
|
8629
|
+
# When set to `dual-stack,` clients can connect to the endpoint using
|
8630
|
+
# either IPv4 or IPv6 addresses..
|
8631
|
+
# @return [String]
|
8632
|
+
#
|
8633
|
+
# @!attribute [rw] traffic_ip_address_type
|
8634
|
+
# The IP address type for traffic within the Client VPN tunnel. Valid
|
8635
|
+
# values are `ipv4` (default) for IPv4 traffic only, `ipv6` for IPv6
|
8636
|
+
# addressing only, or `dual-stack` for both IPv4 and IPv6 traffic.
|
8637
|
+
# When set to `dual-stack`, clients can access both IPv4 and IPv6
|
8638
|
+
# resources through the VPN .
|
8639
|
+
# @return [String]
|
8640
|
+
#
|
8603
8641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
|
8604
8642
|
#
|
8605
8643
|
class CreateClientVpnEndpointRequest < Struct.new(
|
@@ -8622,7 +8660,9 @@ module Aws::EC2
|
|
8622
8660
|
:session_timeout_hours,
|
8623
8661
|
:client_login_banner_options,
|
8624
8662
|
:client_route_enforcement_options,
|
8625
|
-
:disconnect_on_session_timeout
|
8663
|
+
:disconnect_on_session_timeout,
|
8664
|
+
:endpoint_ip_address_type,
|
8665
|
+
:traffic_ip_address_type)
|
8626
8666
|
SENSITIVE = []
|
8627
8667
|
include Aws::Structure
|
8628
8668
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1225,7 +1225,7 @@ module Aws
|
|
1225
1225
|
end
|
1226
1226
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#create_client_vpn_endpoint-instance_method
|
1227
1227
|
def create_client_vpn_endpoint: (
|
1228
|
-
client_cidr_block: ::String,
|
1228
|
+
?client_cidr_block: ::String,
|
1229
1229
|
server_certificate_arn: ::String,
|
1230
1230
|
authentication_options: Array[
|
1231
1231
|
{
|
@@ -1280,7 +1280,9 @@ module Aws
|
|
1280
1280
|
?client_route_enforcement_options: {
|
1281
1281
|
enforced: bool?
|
1282
1282
|
},
|
1283
|
-
?disconnect_on_session_timeout: bool
|
1283
|
+
?disconnect_on_session_timeout: bool,
|
1284
|
+
?endpoint_ip_address_type: ("ipv4" | "ipv6" | "dual-stack"),
|
1285
|
+
?traffic_ip_address_type: ("ipv4" | "ipv6" | "dual-stack")
|
1284
1286
|
) -> _CreateClientVpnEndpointResponseSuccess
|
1285
1287
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClientVpnEndpointResponseSuccess
|
1286
1288
|
|
data/sig/types.rbs
CHANGED
@@ -1555,6 +1555,7 @@ module Aws::EC2
|
|
1555
1555
|
attr_accessor ingress_packets: ::String
|
1556
1556
|
attr_accessor egress_packets: ::String
|
1557
1557
|
attr_accessor client_ip: ::String
|
1558
|
+
attr_accessor client_ipv_6_address: ::String
|
1558
1559
|
attr_accessor common_name: ::String
|
1559
1560
|
attr_accessor status: Types::ClientVpnConnectionStatus
|
1560
1561
|
attr_accessor connection_end_time: ::String
|
@@ -1594,6 +1595,8 @@ module Aws::EC2
|
|
1594
1595
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerResponseOptions
|
1595
1596
|
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementResponseOptions
|
1596
1597
|
attr_accessor disconnect_on_session_timeout: bool
|
1598
|
+
attr_accessor endpoint_ip_address_type: ("ipv4" | "ipv6" | "dual-stack")
|
1599
|
+
attr_accessor traffic_ip_address_type: ("ipv4" | "ipv6" | "dual-stack")
|
1597
1600
|
SENSITIVE: []
|
1598
1601
|
end
|
1599
1602
|
|
@@ -1929,6 +1932,8 @@ module Aws::EC2
|
|
1929
1932
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
1930
1933
|
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementOptions
|
1931
1934
|
attr_accessor disconnect_on_session_timeout: bool
|
1935
|
+
attr_accessor endpoint_ip_address_type: ("ipv4" | "ipv6" | "dual-stack")
|
1936
|
+
attr_accessor traffic_ip_address_type: ("ipv4" | "ipv6" | "dual-stack")
|
1932
1937
|
SENSITIVE: []
|
1933
1938
|
end
|
1934
1939
|
|
@@ -16769,7 +16774,7 @@ module Aws::EC2
|
|
16769
16774
|
|
16770
16775
|
class VolumeStatusInfo
|
16771
16776
|
attr_accessor details: ::Array[Types::VolumeStatusDetails]
|
16772
|
-
attr_accessor status: ("ok" | "impaired" | "insufficient-data")
|
16777
|
+
attr_accessor status: ("ok" | "impaired" | "insufficient-data" | "warning")
|
16773
16778
|
SENSITIVE: []
|
16774
16779
|
end
|
16775
16780
|
|