Class: Aws::IdentityStore::Types::Group
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::Group
- Defined in:
- gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb
Overview
A group object that contains a specified group’s metadata and attributes.
Constant Summary collapse
- SENSITIVE =
[:display_name, :description]
Instance Attribute Summary collapse
-
#description ⇒ String
A string containing a description of the specified group.
-
#display_name ⇒ String
The group’s display name value.
-
#external_ids ⇒ Array<Types::ExternalId>
A list of
ExternalId
objects that contains the identifiers issued to this resource by an external identity provider. -
#group_id ⇒ String
The identifier for a group in the identity store.
-
#identity_store_id ⇒ String
The globally unique identifier for the identity store.
Instance Attribute Details
#description ⇒ String
A string containing a description of the specified group.
863 864 865 866 867 868 869 870 871 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 863 class Group < Struct.new( :group_id, :display_name, :external_ids, :description, :identity_store_id) SENSITIVE = [:display_name, :description] include Aws::Structure end |
#display_name ⇒ String
The group’s display name value. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.
863 864 865 866 867 868 869 870 871 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 863 class Group < Struct.new( :group_id, :display_name, :external_ids, :description, :identity_store_id) SENSITIVE = [:display_name, :description] include Aws::Structure end |
#external_ids ⇒ Array<Types::ExternalId>
A list of ExternalId
objects that contains the identifiers issued
to this resource by an external identity provider.
863 864 865 866 867 868 869 870 871 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 863 class Group < Struct.new( :group_id, :display_name, :external_ids, :description, :identity_store_id) SENSITIVE = [:display_name, :description] include Aws::Structure end |
#group_id ⇒ String
The identifier for a group in the identity store.
863 864 865 866 867 868 869 870 871 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 863 class Group < Struct.new( :group_id, :display_name, :external_ids, :description, :identity_store_id) SENSITIVE = [:display_name, :description] include Aws::Structure end |
#identity_store_id ⇒ String
The globally unique identifier for the identity store.
863 864 865 866 867 868 869 870 871 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 863 class Group < Struct.new( :group_id, :display_name, :external_ids, :description, :identity_store_id) SENSITIVE = [:display_name, :description] include Aws::Structure end |