Interface CfnDatasetGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.470Z")
@Stability(Stable)
public interface CfnDatasetGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDatasetGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.forecast.*;
CfnDatasetGroupMixinProps cfnDatasetGroupMixinProps = CfnDatasetGroupMixinProps.builder()
.datasetArns(List.of("datasetArns"))
.datasetGroupName("datasetGroupName")
.domain("domain")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetGroupMixinPropsstatic final classAn implementation forCfnDatasetGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.default StringThe name of the dataset group.default StringThe domain associated with the dataset group.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetArns
An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.- See Also:
-
getDatasetGroupName
The name of the dataset group.- See Also:
-
getDomain
The domain associated with the dataset group.When you add a dataset to a dataset group, this value and the value specified for the
Domainparameter of the CreateDataset operation must match.The
DomainandDatasetTypethat you choose determine the fields that must be present in training data that you import to a dataset. For example, if you choose theRETAILdomain andTARGET_TIME_SERIESas theDatasetType, Amazon Forecast requires thatitem_id,timestamp, anddemandfields are present in your data. For more information, see Dataset groups .- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnDatasetGroupMixinProps.BuilderofCfnDatasetGroupMixinProps
-