Update Account Customization
| quicksight_update_account_customization | R Documentation |
Updates Amazon Quick Sight customizations¶
Description¶
Updates Amazon Quick Sight customizations. Currently, the only customization that you can use is a theme.
You can use customizations for your Amazon Web Services account or, if
you specify a namespace, for a Quick Sight namespace instead.
Customizations that apply to a namespace override customizations that
apply to an Amazon Web Services account. To find out which
customizations apply, use the describe_account_customization API
operation.
Usage¶
quicksight_update_account_customization(AwsAccountId, Namespace,
AccountCustomization)
Arguments¶
AwsAccountId |
[required] The ID for the Amazon Web Services account that you want to update Quick Sight customizations for. |
Namespace |
The namespace that you want to update Quick Sight customizations for. |
AccountCustomization |
[required] The Quick Sight customizations you're updating. |
Value¶
A list with the following syntax:
list(
Arn = "string",
AwsAccountId = "string",
Namespace = "string",
AccountCustomization = list(
DefaultTheme = "string",
DefaultEmailCustomizationTemplate = "string"
),
RequestId = "string",
Status = 123
)
Request syntax¶
svc$update_account_customization(
AwsAccountId = "string",
Namespace = "string",
AccountCustomization = list(
DefaultTheme = "string",
DefaultEmailCustomizationTemplate = "string"
)
)