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.
8513 8514 8515 8516 8517 8518 |
# File 'lib/aws-sdk-elasticache/types.rb', line 8513 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.
8513 8514 8515 8516 8517 8518 |
# File 'lib/aws-sdk-elasticache/types.rb', line 8513 class SecurityGroupMembership < Struct.new( :security_group_id, :status) SENSITIVE = [] include Aws::Structure end |