Get Ui Customization
cognitoidentityprovider_get_ui_customization | R Documentation |
Gets the user interface (UI) Customization information for a particular app client's app UI, if any such information exists for the client¶
Description¶
Gets the user interface (UI) Customization information for a particular
app client's app UI, if any such information exists for the client. If
nothing is set for the particular client, but there is an existing pool
level customization (the app clientId
is ALL
), then that information
is returned. If nothing is present, then an empty shape is returned.
Usage¶
Arguments¶
UserPoolId
[required] The user pool ID for the user pool.
ClientId
The client ID for the client app.
Value¶
A list with the following syntax:
list(
UICustomization = list(
UserPoolId = "string",
ClientId = "string",
ImageUrl = "string",
CSS = "string",
CSSVersion = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
CreationDate = as.POSIXct(
"2015-01-01"
)
)
)