Create Dataset Group
forecastservice_create_dataset_group | R Documentation |
Creates a dataset group, which holds a collection of related datasets¶
Description¶
Creates a dataset group, which holds a collection of related datasets.
You can add datasets to the dataset group when you create the dataset
group, or later by using the update_dataset_group
operation.
After creating a dataset group and adding datasets, you use the dataset group when you create a predictor. For more information, see Dataset groups.
To get a list of all your datasets groups, use the list_dataset_groups
operation.
The Status
of a dataset group must be ACTIVE
before you can use the
dataset group to create a predictor. To get the status, use the
describe_dataset_group
operation.
Usage¶
forecastservice_create_dataset_group(DatasetGroupName, Domain,
DatasetArns, Tags)
Arguments¶
DatasetGroupName |
[required] A name for the dataset group. |
Domain |
[required] The domain associated with the dataset group. When you
add a dataset to a dataset group, this value and the value specified for
the The |
DatasetArns |
An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group. |
Tags |
The optional metadata that you apply to the dataset group to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags:
|
Value¶
A list with the following syntax:
list(
DatasetGroupArn = "string"
)
Request syntax¶
svc$create_dataset_group(
DatasetGroupName = "string",
Domain = "RETAIL"|"CUSTOM"|"INVENTORY_PLANNING"|"EC2_CAPACITY"|"WORK_FORCE"|"WEB_TRAFFIC"|"METRICS",
DatasetArns = list(
"string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)