Class: Aws::IdentityStore::Types::CreateGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::CreateGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:display_name, :description]
Instance Attribute Summary collapse
-
#description ⇒ String
A string containing the description of the group.
-
#display_name ⇒ String
A string containing the name of the group.
-
#identity_store_id ⇒ String
The globally unique identifier for the identity store.
Instance Attribute Details
#description ⇒ String
A string containing the description of the group.
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_name ⇒ String
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.
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_id ⇒ String
The globally unique identifier for the identity store.
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 |