Create Theme Alias
quicksight_create_theme_alias | R Documentation |
Creates a theme alias for a theme¶
Description¶
Creates a theme alias for a theme.
Usage¶
quicksight_create_theme_alias(AwsAccountId, ThemeId, AliasName,
ThemeVersionNumber)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the theme for the new theme alias. |
ThemeId |
[required] An ID for the theme alias. |
AliasName |
[required] The name that you want to give to the theme alias that
you are creating. The alias name can't begin with a |
ThemeVersionNumber |
[required] The version number of the theme. |
Value¶
A list with the following syntax:
list(
ThemeAlias = list(
Arn = "string",
AliasName = "string",
ThemeVersionNumber = 123
),
Status = 123,
RequestId = "string"
)
Request syntax¶
svc$create_theme_alias(
AwsAccountId = "string",
ThemeId = "string",
AliasName = "string",
ThemeVersionNumber = 123
)