Class: Aws::DocDB::Types::Subnet
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::Subnet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Detailed information about a subnet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_availability_zone ⇒ Types::AvailabilityZone
Specifies the Availability Zone for the subnet.
-
#subnet_identifier ⇒ String
Specifies the identifier of the subnet.
-
#subnet_status ⇒ String
Specifies the status of the subnet.
Instance Attribute Details
#subnet_availability_zone ⇒ Types::AvailabilityZone
Specifies the Availability Zone for the subnet.
6095 6096 6097 6098 6099 6100 6101 |
# File 'lib/aws-sdk-docdb/types.rb', line 6095 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_status) SENSITIVE = [] include Aws::Structure end |