Class: Aws::DAX::Types::Subnet
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::Subnet
- Defined in:
- gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb
Overview
Represents the subnet associated with a DAX cluster. This parameter refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with DAX.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_availability_zone ⇒ String
The Availability Zone (AZ) for the subnet.
-
#subnet_identifier ⇒ String
The system-assigned identifier for the subnet.
-
#supported_network_types ⇒ Array<String>
The network types supported by this subnet.
Instance Attribute Details
#subnet_availability_zone ⇒ String
The Availability Zone (AZ) for the subnet.
1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1404 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :supported_network_types) SENSITIVE = [] include Aws::Structure end |
#subnet_identifier ⇒ String
The system-assigned identifier for the subnet.
1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1404 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :supported_network_types) SENSITIVE = [] include Aws::Structure end |
#supported_network_types ⇒ Array<String>
The network types supported by this subnet. Returns an array of
strings that can include ipv4
, ipv6
, or both, indicating whether
the subnet supports IPv4 only, IPv6 only, or dual-stack deployments.
1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1404 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :supported_network_types) SENSITIVE = [] include Aws::Structure end |