/** *

A provider representing an Amazon Cognito Identity User Pool and its client ID.

*/ export interface _CognitoIdentityProvider { /** *

The provider name for an Amazon Cognito Identity User Pool. For example, cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789.

*/ ProviderName?: string; /** *

The client ID for the Amazon Cognito Identity User Pool.

*/ ClientId?: string; /** *

TRUE if server-side token validation is enabled for the identity provider’s token.

*/ ServerSideTokenCheck?: boolean; } export declare type _UnmarshalledCognitoIdentityProvider = _CognitoIdentityProvider;