Class: Aws::MemoryDB::Types::SecurityGroupMembership

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb

Overview

Represents a single security group and its status.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idString

The identifier of the security group.

Returns:

  • (String)


2533
2534
2535
2536
2537
2538
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2533

class SecurityGroupMembership < Struct.new(
  :security_group_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

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.

Returns:

  • (String)


2533
2534
2535
2536
2537
2538
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2533

class SecurityGroupMembership < Struct.new(
  :security_group_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end