Interface CfnGraphQLApi.UserPoolConfigProperty

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

@Stability(Stable) public static interface CfnGraphQLApi.UserPoolConfigProperty extends software.amazon.jsii.JsiiSerializable
The UserPoolConfig property type specifies the optional authorization configuration for using Amazon Cognito user pools with your GraphQL endpoint for an AWS AppSync GraphQL API.

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.*;
 UserPoolConfigProperty userPoolConfigProperty = UserPoolConfigProperty.builder()
         .appIdClientRegex("appIdClientRegex")
         .awsRegion("awsRegion")
         .defaultAction("defaultAction")
         .userPoolId("userPoolId")
         .build();
 

See Also: