@Generated(value="jsii-pacmak/1.54.0 (build b1b977a)", date="2022-03-10T02:24:05.255Z") @Stability(value=Stable) public interface CfnDatasetProps 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.*;
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 String |
getDataFrequency()
`AWS::Forecast::Dataset.DataFrequency`.
|
String |
getDatasetName()
`AWS::Forecast::Dataset.DatasetName`.
|
String |
getDatasetType()
`AWS::Forecast::Dataset.DatasetType`.
|
String |
getDomain()
`AWS::Forecast::Dataset.Domain`.
|
default Object |
getEncryptionConfig()
`AWS::Forecast::Dataset.EncryptionConfig`.
|
Object |
getSchema()
`AWS::Forecast::Dataset.Schema`.
|
default List<Object> |
getTags()
`AWS::Forecast::Dataset.Tags`.
|
@Stability(value=Stable) @NotNull String getDatasetName()
@Stability(value=Stable) @NotNull String getDatasetType()
@Stability(value=Stable) @NotNull String getDomain()
@Stability(value=Stable) @NotNull Object getSchema()
@Stability(value=Stable) @Nullable default String getDataFrequency()
@Stability(value=Stable) @Nullable default Object getEncryptionConfig()
@Stability(value=Stable) @Nullable default List<Object> getTags()
@Stability(value=Stable) static CfnDatasetProps.Builder builder()
CfnDatasetProps.Builder of CfnDatasetPropsCopyright © 2022. All rights reserved.