@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.396Z") @Stability(value=Stable) public interface CfnDatasetGroupProps extends software.amazon.jsii.JsiiSerializable
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 List<String> |
getDatasetArns()
An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.
|
String |
getDatasetGroupName()
The name of the dataset group.
|
String |
getDomain()
The domain associated with the dataset group.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getDatasetGroupName()
@Stability(value=Stable) @NotNull 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 .
@Stability(value=Stable) @Nullable default List<String> getDatasetArns()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnDatasetGroupProps.Builder builder()
CfnDatasetGroupProps.Builder of CfnDatasetGroupPropsCopyright © 2022. All rights reserved.