Class: Aws::IdentityStore::Types::CreateGroupRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:display_name, :description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A string containing the description of the group.

Returns:

  • (String)


238
239
240
241
242
243
244
# File 'lib/aws-sdk-identitystore/types.rb', line 238

class CreateGroupRequest < Struct.new(
  :identity_store_id,
  :display_name,
  :description)
  SENSITIVE = [:display_name, :description]
  include Aws::Structure
end

#display_nameString

A string containing the name of the group. This value is commonly displayed when the group is referenced. Administrator and AWSAdministrators are reserved names and can’t be used for users or groups.

Returns:

  • (String)


238
239
240
241
242
243
244
# File 'lib/aws-sdk-identitystore/types.rb', line 238

class CreateGroupRequest < Struct.new(
  :identity_store_id,
  :display_name,
  :description)
  SENSITIVE = [:display_name, :description]
  include Aws::Structure
end

#identity_store_idString

The globally unique identifier for the identity store.

Returns:

  • (String)


238
239
240
241
242
243
244
# File 'lib/aws-sdk-identitystore/types.rb', line 238

class CreateGroupRequest < Struct.new(
  :identity_store_id,
  :display_name,
  :description)
  SENSITIVE = [:display_name, :description]
  include Aws::Structure
end