Class: Aws::RDS::Types::VpcSecurityGroupMembership
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::VpcSecurityGroupMembership
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
This data type is used as a response element for queries on VPC security group membership.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The membership status of the VPC security group.
-
#vpc_security_group_id ⇒ String
The name of the VPC security group.
Instance Attribute Details
#status ⇒ String
The membership status of the VPC security group.
Currently, the only valid status is ‘active`.
28293 28294 28295 28296 28297 28298 |
# File 'lib/aws-sdk-rds/types.rb', line 28293 class VpcSecurityGroupMembership < Struct.new( :vpc_security_group_id, :status) SENSITIVE = [] include Aws::Structure end |
#vpc_security_group_id ⇒ String
The name of the VPC security group.
28293 28294 28295 28296 28297 28298 |
# File 'lib/aws-sdk-rds/types.rb', line 28293 class VpcSecurityGroupMembership < Struct.new( :vpc_security_group_id, :status) SENSITIVE = [] include Aws::Structure end |