@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:44.565Z") @Stability(value=Stable) public interface CfnUserPoolUICustomizationAttachmentProps extends software.amazon.jsii.JsiiSerializable
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() |
String |
getClientId()
The client ID for the client app.
|
default String |
getCss()
The CSS values in the UI customization.
|
String |
getUserPoolId()
The user pool ID for the user pool.
|
@Stability(value=Stable) @NotNull 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 ).
@Stability(value=Stable) @NotNull String getUserPoolId()
@Stability(value=Stable) @Nullable default String getCss()
@Stability(value=Stable) static CfnUserPoolUICustomizationAttachmentProps.Builder builder()
Copyright © 2022. All rights reserved.