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