Show / Hide Table of Contents

Class CfnGraphQLApiPropsMixin.CognitoUserPoolConfigProperty

Describes an Amazon Cognito user pool configuration.

Inheritance
object
CfnGraphQLApiPropsMixin.CognitoUserPoolConfigProperty
Implements
CfnGraphQLApiPropsMixin.ICognitoUserPoolConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnGraphQLApiPropsMixin.CognitoUserPoolConfigProperty : CfnGraphQLApiPropsMixin.ICognitoUserPoolConfigProperty
Syntax (vb)
Public Class CfnGraphQLApiPropsMixin.CognitoUserPoolConfigProperty Implements CfnGraphQLApiPropsMixin.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.CfnPropertyMixins.AWS.AppSync;

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

Synopsis

Constructors

CognitoUserPoolConfigProperty()

Describes an Amazon Cognito user pool configuration.

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.

Constructors

CognitoUserPoolConfigProperty()

Describes an Amazon Cognito user pool configuration.

public CognitoUserPoolConfigProperty()
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.CfnPropertyMixins.AWS.AppSync;

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

Properties

AppIdClientRegex

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

public string? AppIdClientRegex { get; set; }
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.

public string? AwsRegion { get; set; }
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.

public object? UserPoolId { get; set; }
Property Value

object

Remarks

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

Type union: either string or IUserPoolRef

Implements

CfnGraphQLApiPropsMixin.ICognitoUserPoolConfigProperty
Back to top Generated by DocFX