@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-02T20:25:25.504Z")
public interface CfnDatasetProps
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.*; Object encryptionConfig; Object schema; Object tags; CfnDatasetProps cfnDatasetProps = CfnDatasetProps.builder() .datasetName("datasetName") .datasetType("datasetType") .domain("domain") .schema(schema) // the properties below are optional .dataFrequency("dataFrequency") .encryptionConfig(encryptionConfig) .tags(List.of(tags)) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDatasetProps.Builder
A builder for
CfnDatasetProps |
static class |
CfnDatasetProps.Jsii$Proxy
An implementation for
CfnDatasetProps |
Modifier and Type | Method and Description |
---|---|
static CfnDatasetProps.Builder |
builder() |
default java.lang.String |
getDataFrequency()
The frequency of data collection.
|
java.lang.String |
getDatasetName()
The name of the dataset.
|
java.lang.String |
getDatasetType()
The dataset type.
|
java.lang.String |
getDomain()
The domain associated with the dataset.
|
default java.lang.Object |
getEncryptionConfig()
A Key Management Service (KMS) key and the Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.
|
java.lang.Object |
getSchema()
The schema for the dataset.
|
default java.util.List<java.lang.Object> |
getTags()
An array of key-value pairs to apply to this resource.
|
java.lang.String getDatasetName()
java.lang.String getDatasetType()
java.lang.String getDomain()
java.lang.Object getSchema()
The schema attributes and their order must match the fields in your data. The dataset Domain
and DatasetType
that you choose determine the minimum required fields in your training data. For information about the required fields for a specific dataset domain and type, see Dataset Domains and Dataset Types .
default java.lang.String getDataFrequency()
Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes), 15min (15 minutes), 10min (10 minutes), 5min (5 minutes), and 1min (1 minute). For example, "D" indicates every day and "15min" indicates every 15 minutes.
default java.lang.Object getEncryptionConfig()
default java.util.List<java.lang.Object> getTags()
For more information, see Tag .
static CfnDatasetProps.Builder builder()
CfnDatasetProps.Builder
of CfnDatasetProps