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.
5787 5788 5789 5790 5791 5792 5793 |
# File 'lib/aws-sdk-docdb/types.rb', line 5787 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_status) SENSITIVE = [] include Aws::Structure end |