Class: Aws::RDS::Types::VpcSecurityGroupMembership
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::VpcSecurityGroupMembership
- Defined in:
- gems/aws-sdk-rds/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
.
28333 28334 28335 28336 28337 28338 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 28333 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.
28333 28334 28335 28336 28337 28338 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 28333 class VpcSecurityGroupMembership < Struct.new( :vpc_security_group_id, :status) SENSITIVE = [] include Aws::Structure end |