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.
13522 13523 13524 13525 13526 13527 13528 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 13522 class Subnet < Struct.new( :subnet_identifier, :subnet_availability_zone, :subnet_status) SENSITIVE = [] include Aws::Structure end |