Interface CfnIdentityPool.CognitoIdentityProviderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentityPool.CognitoIdentityProviderProperty.Jsii$Proxy
Enclosing class:
CfnIdentityPool

@Stability(Stable) public static interface CfnIdentityPool.CognitoIdentityProviderProperty extends software.amazon.jsii.JsiiSerializable
CognitoIdentityProvider is a property of the AWS::Cognito::IdentityPool resource that represents an Amazon Cognito user pool and its client ID.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cognito.*;
 CognitoIdentityProviderProperty cognitoIdentityProviderProperty = CognitoIdentityProviderProperty.builder()
         .clientId("clientId")
         .providerName("providerName")
         // the properties below are optional
         .serverSideTokenCheck(false)
         .build();
 

See Also: