Class: Aws::WorkMail::Types::GroupIdentifier

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-workmail/types.rb

Overview

The identifier that contains the Group ID and name of a group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_idString

Group ID that matched the group.

Returns:

  • (String)


2541
2542
2543
2544
2545
2546
# File 'lib/aws-sdk-workmail/types.rb', line 2541

class GroupIdentifier < Struct.new(
  :group_id,
  :group_name)
  SENSITIVE = []
  include Aws::Structure
end

#group_nameString

Group name that matched the group.

Returns:

  • (String)


2541
2542
2543
2544
2545
2546
# File 'lib/aws-sdk-workmail/types.rb', line 2541

class GroupIdentifier < Struct.new(
  :group_id,
  :group_name)
  SENSITIVE = []
  include Aws::Structure
end