Class: Aws::CognitoIdentity::Types::CognitoIdentityProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::CognitoIdentityProvider
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Note:
When making an API call, you may pass CognitoIdentityProvider data as a hash:
{
provider_name: "CognitoIdentityProviderName",
client_id: "CognitoIdentityProviderClientId",
server_side_token_check: false,
}
A provider representing an Amazon Cognito Identity User Pool and its client ID.
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID for the Amazon Cognito Identity User Pool.
-
#provider_name ⇒ String
The provider name for an Amazon Cognito Identity User Pool.
-
#server_side_token_check ⇒ Boolean
TRUE if server-side token validation is enabled for the identity provider’s token.
Instance Attribute Details
#client_id ⇒ String
The client ID for the Amazon Cognito Identity User Pool.
39 40 41 42 43 44 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 39 class CognitoIdentityProvider < Struct.new( :provider_name, :client_id, :server_side_token_check) include Aws::Structure end |
#provider_name ⇒ String
The provider name for an Amazon Cognito Identity User Pool. For example, ‘cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789`.
39 40 41 42 43 44 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 39 class CognitoIdentityProvider < Struct.new( :provider_name, :client_id, :server_side_token_check) include Aws::Structure end |
#server_side_token_check ⇒ Boolean
TRUE if server-side token validation is enabled for the identity provider’s token.
39 40 41 42 43 44 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 39 class CognitoIdentityProvider < Struct.new( :provider_name, :client_id, :server_side_token_check) include Aws::Structure end |