Table of Contents

Interface ICfnUserPoolUICustomizationAttachmentProps

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

Properties for defining a CfnUserPoolUICustomizationAttachment.

public interface ICfnUserPoolUICustomizationAttachmentProps

Examples

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

             var cfnUserPoolUICustomizationAttachmentProps = new CfnUserPoolUICustomizationAttachmentProps {
                 ClientId = "clientId",
                 UserPoolId = "userPoolId",

                 // the properties below are optional
                 Css = "css"
             };

Remarks

Properties

ClientId

The client ID for the client app.

string ClientId { get; }

Property Value

string

Remarks

You can specify the UI customization settings for a single client (with a specific clientId) or for all clients (by setting the clientId to ALL ).

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#cfn-cognito-userpooluicustomizationattachment-clientid

Css

The CSS values in the UI customization.

string? Css { get; }

Property Value

string

Remarks

UserPoolId

The user pool ID for the user pool.

string UserPoolId { get; }

Property Value

string

Remarks