Interface CfnApi.CognitoConfigProperty

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

@Stability(Stable) public static interface CfnApi.CognitoConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes an Amazon Cognito configuration.

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.appsync.*;
 CognitoConfigProperty cognitoConfigProperty = CognitoConfigProperty.builder()
         .awsRegion("awsRegion")
         .userPoolId("userPoolId")
         // the properties below are optional
         .appIdClientRegex("appIdClientRegex")
         .build();
 

See Also: