List Dataset Groups
forecastservice_list_dataset_groups | R Documentation |
Returns a list of dataset groups created using the CreateDatasetGroup operation¶
Description¶
Returns a list of dataset groups created using the
create_dataset_group
operation. For each dataset group, this operation
returns a summary of its properties, including its Amazon Resource Name
(ARN). You can retrieve the complete set of properties by using the
dataset group ARN with the describe_dataset_group
operation.
Usage¶
forecastservice_list_dataset_groups(NextToken, MaxResults)
Arguments¶
NextToken |
If the result of the previous request was truncated, the response
includes a |
MaxResults |
The number of items to return in the response. |
Value¶
A list with the following syntax:
list(
DatasetGroups = list(
list(
DatasetGroupArn = "string",
DatasetGroupName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModificationTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_dataset_groups(
NextToken = "string",
MaxResults = 123
)