Class: Aws::DAX::Types::Subnet

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#subnet_availability_zoneString

The Availability Zone (AZ) for the subnet.

Returns:

  • (String)


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_identifierString

The system-assigned identifier for the subnet.

Returns:

  • (String)


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_typesArray<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.

Returns:

  • (Array<String>)


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