Describe Dataset
personalize_describe_dataset | R Documentation |
Describes the given dataset¶
Description¶
Describes the given dataset. For more information on datasets, see
create_dataset
.
Usage¶
Arguments¶
datasetArn
[required] The Amazon Resource Name (ARN) of the dataset to describe.
Value¶
A list with the following syntax:
list(
dataset = list(
name = "string",
datasetArn = "string",
datasetGroupArn = "string",
datasetType = "string",
schemaArn = "string",
status = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
latestDatasetUpdate = list(
schemaArn = "string",
status = "string",
failureReason = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
),
trackingId = "string"
)
)