Class: Aws::Neptune::Types::Subnet
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::Subnet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Specifies a subnet.
This data type is used as a response element in the DescribeDBSubnetGroups action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_availability_zone ⇒ Types::AvailabilityZone
Specifies the EC2 Availability Zone that the subnet is in.
-
#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 EC2 Availability Zone that the subnet is in.
7932 7933 7934 7935 7936 7937 7938 |
# File 'lib/aws-sdk-neptune/types.rb', line 7932 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_status) SENSITIVE = [] include Aws::Structure end |