@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-14T16:25:32.547Z")
public interface CfnUserPoolUICustomizationAttachmentProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; CfnUserPoolUICustomizationAttachmentProps cfnUserPoolUICustomizationAttachmentProps = CfnUserPoolUICustomizationAttachmentProps.builder() .clientId("clientId") .userPoolId("userPoolId") // the properties below are optional .css("css") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPoolUICustomizationAttachmentProps.Builder
A builder for
CfnUserPoolUICustomizationAttachmentProps |
static class |
CfnUserPoolUICustomizationAttachmentProps.Jsii$Proxy
An implementation for
CfnUserPoolUICustomizationAttachmentProps |
Modifier and Type | Method and Description |
---|---|
static CfnUserPoolUICustomizationAttachmentProps.Builder |
builder() |
java.lang.String |
getClientId()
The client ID for the client app.
|
default java.lang.String |
getCss()
The CSS values in the UI customization.
|
java.lang.String |
getUserPoolId()
The user pool ID for the user pool.
|
java.lang.String getClientId()
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
).
java.lang.String getUserPoolId()
default java.lang.String getCss()
static CfnUserPoolUICustomizationAttachmentProps.Builder builder()