Class: Aws::DatabaseMigrationService::Types::Subnet
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::Subnet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
In response to a request by the ‘DescribeReplicationSubnetGroups` operation, this object identifies a subnet by its given Availability Zone, subnet identifier, and status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_availability_zone ⇒ Types::AvailabilityZone
The Availability Zone of the subnet.
-
#subnet_identifier ⇒ String
The subnet identifier.
-
#subnet_status ⇒ String
The status of the subnet.
Instance Attribute Details
#subnet_availability_zone ⇒ Types::AvailabilityZone
The Availability Zone of the subnet.
12959 12960 12961 12962 12963 12964 12965 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 12959 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_status) SENSITIVE = [] include Aws::Structure end |