Show / Hide Table of Contents

Interface CfnGraphQLApi.ICognitoUserPoolConfigProperty

Describes an Amazon Cognito user pool configuration.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnGraphQLApi.ICognitoUserPoolConfigProperty
Syntax (vb)
Public Interface CfnGraphQLApi.ICognitoUserPoolConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-cognitouserpoolconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppSync;

             var cognitoUserPoolConfigProperty = new CognitoUserPoolConfigProperty {
                 AppIdClientRegex = "appIdClientRegex",
                 AwsRegion = "awsRegion",
                 UserPoolId = "userPoolId"
             };

Synopsis

Properties

AppIdClientRegex

A regular expression for validating the incoming Amazon Cognito user pool app client ID.

AwsRegion

The AWS Region in which the user pool was created.

UserPoolId

The user pool ID.

Properties

AppIdClientRegex

A regular expression for validating the incoming Amazon Cognito user pool app client ID.

string? AppIdClientRegex { get; }
Property Value

string

Remarks

If this value isn't set, no filtering is applied.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-cognitouserpoolconfig.html#cfn-appsync-graphqlapi-cognitouserpoolconfig-appidclientregex

AwsRegion

The AWS Region in which the user pool was created.

string? AwsRegion { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-cognitouserpoolconfig.html#cfn-appsync-graphqlapi-cognitouserpoolconfig-awsregion

UserPoolId

The user pool ID.

string? UserPoolId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-cognitouserpoolconfig.html#cfn-appsync-graphqlapi-cognitouserpoolconfig-userpoolid

Back to top Generated by DocFX