Class: Aws::VerifiedPermissions::Types::CognitoGroupConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::CognitoGroupConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-verifiedpermissions/types.rb
Overview
The type of entity that a policy store maps to groups from an Amazon Cognito user pool identity source.
This data type is part of a [CognitoUserPoolConfiguration] structure and is a request parameter in [CreateIdentitySource].
[1]: docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_CognitoUserPoolConfiguration.html [2]: docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_CreateIdentitySource.html
Constant Summary collapse
- SENSITIVE =
[:group_entity_type]
Instance Attribute Summary collapse
-
#group_entity_type ⇒ String
The name of the schema entity type that’s mapped to the user pool group.
Instance Attribute Details
#group_entity_type ⇒ String
The name of the schema entity type that’s mapped to the user pool group. Defaults to ‘AWS::CognitoGroup`.
600 601 602 603 604 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 600 class CognitoGroupConfiguration < Struct.new( :group_entity_type) SENSITIVE = [:group_entity_type] include Aws::Structure end |