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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApi.CognitoConfigProperty
static final class
An implementation forCfnApi.CognitoConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsRegion
The AWS Region in which the user pool was created.- See Also:
-
getUserPoolId
The user pool ID.- See Also:
-
getAppIdClientRegex
A regular expression for validating the incoming Amazon Cognito user pool app client ID.If this value isn't set, no filtering is applied.
- See Also:
-
builder
-