Interface ICfnUserPoolUICustomizationAttachmentProps
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
ExampleMetadata: fixture=_generated
Properties
ClientId
The client ID for the client app.
string ClientId { get; }
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.
string? Css { get; }
Property Value
Remarks
UserPoolId
The user pool ID for the user pool.
string UserPoolId { get; }