Class: Aws::IdentityStore::Types::DescribeGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::DescribeGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_id ⇒ String
The identifier for a group in the identity store.
-
#identity_store_id ⇒ String
The globally unique identifier for the identity store, such as
d-1234567890.
Instance Attribute Details
#group_id ⇒ String
The identifier for a group in the identity store.
549 550 551 552 553 554 |
# File 'lib/aws-sdk-identitystore/types.rb', line 549 class DescribeGroupRequest < Struct.new( :identity_store_id, :group_id) SENSITIVE = [] include Aws::Structure end |
#identity_store_id ⇒ String
The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string that contains numbers and lower case letters. This value is generated at the time that a new identity store is created.
549 550 551 552 553 554 |
# File 'lib/aws-sdk-identitystore/types.rb', line 549 class DescribeGroupRequest < Struct.new( :identity_store_id, :group_id) SENSITIVE = [] include Aws::Structure end |