Class: Aws::MemoryDB::Types::SubnetGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::SubnetGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Represents the output of one of the following operations:
-
CreateSubnetGroup
-
UpdateSubnetGroup
A subnet group is a collection of subnets (typically private) that you can designate for your clusters running in an Amazon Virtual Private Cloud (VPC) environment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN (Amazon Resource Name) of the subnet group.
-
#description ⇒ String
A description of the subnet group.
-
#name ⇒ String
The name of the subnet group.
-
#subnets ⇒ Array<Types::Subnet>
A list of subnets associated with the subnet group.
-
#vpc_id ⇒ String
The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.
Instance Attribute Details
#arn ⇒ String
The ARN (Amazon Resource Name) of the subnet group.
2889 2890 2891 2892 2893 2894 2895 2896 2897 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2889 class SubnetGroup < Struct.new( :name, :description, :vpc_id, :subnets, :arn) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the subnet group
2889 2890 2891 2892 2893 2894 2895 2896 2897 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2889 class SubnetGroup < Struct.new( :name, :description, :vpc_id, :subnets, :arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the subnet group
2889 2890 2891 2892 2893 2894 2895 2896 2897 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2889 class SubnetGroup < Struct.new( :name, :description, :vpc_id, :subnets, :arn) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<Types::Subnet>
A list of subnets associated with the subnet group.
2889 2890 2891 2892 2893 2894 2895 2896 2897 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2889 class SubnetGroup < Struct.new( :name, :description, :vpc_id, :subnets, :arn) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.
2889 2890 2891 2892 2893 2894 2895 2896 2897 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2889 class SubnetGroup < Struct.new( :name, :description, :vpc_id, :subnets, :arn) SENSITIVE = [] include Aws::Structure end |