Class CfnUserPoolUICustomizationAttachmentProps
Properties for defining a CfnUserPoolUICustomizationAttachment
.
public class CfnUserPoolUICustomizationAttachmentProps : ICfnUserPoolUICustomizationAttachmentProps
- Inheritance
-
CfnUserPoolUICustomizationAttachmentProps
- Implements
- Inherited Members
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
ExampleMetadata: fixture=_generated
Constructors
CfnUserPoolUICustomizationAttachmentProps()
public CfnUserPoolUICustomizationAttachmentProps()
Properties
ClientId
The client ID for the client app.
public string ClientId { get; set; }
Property Value
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
).
Css
The CSS values in the UI customization.
public string? Css { get; set; }
Property Value
Remarks
UserPoolId
The user pool ID for the user pool.
public string UserPoolId { get; set; }