Class: Aws::MemoryDB::Types::SecurityGroupMembership
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::SecurityGroupMembership
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Represents a single security group and its status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_id ⇒ String
The identifier of the security group.
-
#status ⇒ String
The status of the security group membership.
Instance Attribute Details
#security_group_id ⇒ String
The identifier of the security group.
2561 2562 2563 2564 2565 2566 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2561 class SecurityGroupMembership < Struct.new( :security_group_id, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the security group membership. The status changes whenever a security group is modified, or when the security groups assigned to a cluster are modified.
2561 2562 2563 2564 2565 2566 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2561 class SecurityGroupMembership < Struct.new( :security_group_id, :status) SENSITIVE = [] include Aws::Structure end |