interface CfnDatasetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Forecast.Mixins.CfnDatasetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsforecast/mixins#CfnDatasetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.forecast.mixins.CfnDatasetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_forecast.mixins.CfnDatasetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_forecast » mixins » CfnDatasetGroupMixinProps |
Properties for CfnDatasetGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as forecast_mixins } from '@aws-cdk/mixins-preview/aws-forecast';
const cfnDatasetGroupMixinProps: forecast_mixins.CfnDatasetGroupMixinProps = {
datasetArns: ['datasetArns'],
datasetGroupName: 'datasetGroupName',
domain: 'domain',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string[] | An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group. |
| dataset | string | The name of the dataset group. |
| domain? | string | The domain associated with the dataset group. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
datasetArns?
Type:
string[]
(optional)
An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.
datasetGroupName?
Type:
string
(optional)
The name of the dataset group.
domain?
Type:
string
(optional)
The domain associated with the dataset group.
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 .
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript