Describe Template
quicksight_describe_template | R Documentation |
Describes a template's metadata¶
Description¶
Describes a template's metadata.
Usage¶
Arguments¶
AwsAccountId
[required] The ID of the Amazon Web Services account that contains the template that you're describing.
TemplateId
[required] The ID for the template.
VersionNumber
(Optional) The number for the version to describe. If a
VersionNumber
parameter value isn't provided, the latest version of the template is described.AliasName
The alias of the template that you want to describe. If you name a specific alias, you describe the version that the alias points to. You can specify the latest version of the template by providing the keyword
$LATEST
in theAliasName
parameter. The keyword$PUBLISHED
doesn't apply to templates.
Value¶
A list with the following syntax:
list(
Template = list(
Arn = "string",
Name = "string",
Version = list(
CreatedTime = as.POSIXct(
"2015-01-01"
),
Errors = list(
list(
Type = "SOURCE_NOT_FOUND"|"DATA_SET_NOT_FOUND"|"INTERNAL_FAILURE"|"ACCESS_DENIED",
Message = "string",
ViolatedEntities = list(
list(
Path = "string"
)
)
)
),
VersionNumber = 123,
Status = "CREATION_IN_PROGRESS"|"CREATION_SUCCESSFUL"|"CREATION_FAILED"|"UPDATE_IN_PROGRESS"|"UPDATE_SUCCESSFUL"|"UPDATE_FAILED"|"DELETED",
DataSetConfigurations = list(
list(
Placeholder = "string",
DataSetSchema = list(
ColumnSchemaList = list(
list(
Name = "string",
DataType = "string",
GeographicRole = "string"
)
)
),
ColumnGroupSchemaList = list(
list(
Name = "string",
ColumnGroupColumnSchemaList = list(
list(
Name = "string"
)
)
)
)
)
),
Description = "string",
SourceEntityArn = "string",
ThemeArn = "string",
Sheets = list(
list(
SheetId = "string",
Name = "string"
)
)
),
TemplateId = "string",
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
CreatedTime = as.POSIXct(
"2015-01-01"
)
),
Status = 123,
RequestId = "string"
)