@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-25T18:28:57.342Z")
public interface CfnDatasetGroupProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.forecast.*; CfnDatasetGroupProps cfnDatasetGroupProps = CfnDatasetGroupProps.builder() .datasetGroupName("datasetGroupName") .domain("domain") // the properties below are optional .datasetArns(List.of("datasetArns")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDatasetGroupProps.Builder
A builder for
CfnDatasetGroupProps |
static class |
CfnDatasetGroupProps.Jsii$Proxy
An implementation for
CfnDatasetGroupProps |
Modifier and Type | Method and Description |
---|---|
static CfnDatasetGroupProps.Builder |
builder() |
default java.util.List<java.lang.String> |
getDatasetArns()
An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.
|
java.lang.String |
getDatasetGroupName()
The name of the dataset group.
|
java.lang.String |
getDomain()
The domain associated with the dataset group.
|
default java.util.List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
java.lang.String getDatasetGroupName()
java.lang.String getDomain()
When you add a dataset to a dataset group, this value and the value specified for the Domain
parameter of the CreateDataset operation must match.
The Domain
and DatasetType
that you choose determine the fields that must be present in training data that you import to a dataset. For example, if you choose the RETAIL
domain and TARGET_TIME_SERIES
as the DatasetType
, Amazon Forecast requires that item_id
, timestamp
, and demand
fields are present in your data. For more information, see Dataset groups .
default java.util.List<java.lang.String> getDatasetArns()
default java.util.List<CfnTag> getTags()
For more information, see Tag .
static CfnDatasetGroupProps.Builder builder()
CfnDatasetGroupProps.Builder
of CfnDatasetGroupProps