Class: Aws::ElastiCache::Types::Subnet
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::Subnet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Represents the subnet associated with a cluster. This parameter refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with ElastiCache.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_availability_zone ⇒ Types::AvailabilityZone
The Availability Zone associated with the subnet.
-
#subnet_identifier ⇒ String
The unique identifier for the subnet.
-
#subnet_outpost ⇒ Types::SubnetOutpost
The outpost ARN of the subnet.
-
#supported_network_types ⇒ Array<String>
Either ‘ipv4` | `ipv6` | `dual_stack`.
Instance Attribute Details
#subnet_availability_zone ⇒ Types::AvailabilityZone
The Availability Zone associated with the subnet.
9290 9291 9292 9293 9294 9295 9296 9297 |
# File 'lib/aws-sdk-elasticache/types.rb', line 9290 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_outpost, :supported_network_types) SENSITIVE = [] include Aws::Structure end |
#subnet_identifier ⇒ String
The unique identifier for the subnet.
9290 9291 9292 9293 9294 9295 9296 9297 |
# File 'lib/aws-sdk-elasticache/types.rb', line 9290 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_outpost, :supported_network_types) SENSITIVE = [] include Aws::Structure end |
#subnet_outpost ⇒ Types::SubnetOutpost
The outpost ARN of the subnet.
9290 9291 9292 9293 9294 9295 9296 9297 |
# File 'lib/aws-sdk-elasticache/types.rb', line 9290 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_outpost, :supported_network_types) SENSITIVE = [] include Aws::Structure end |
#supported_network_types ⇒ Array<String>
Either ‘ipv4` | `ipv6` | `dual_stack`. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 and above or Memcached engine version 1.6.6 and above on all instances built on the [Nitro system].
[1]: aws.amazon.com/ec2/nitro/
9290 9291 9292 9293 9294 9295 9296 9297 |
# File 'lib/aws-sdk-elasticache/types.rb', line 9290 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_outpost, :supported_network_types) SENSITIVE = [] include Aws::Structure end |