@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.034Z") @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.iotanalytics.*;
CfnDatasetProps cfnDatasetProps = CfnDatasetProps.builder()
.actions(List.of(ActionProperty.builder()
.actionName("actionName")
// the properties below are optional
.containerAction(ContainerActionProperty.builder()
.executionRoleArn("executionRoleArn")
.image("image")
.resourceConfiguration(ResourceConfigurationProperty.builder()
.computeType("computeType")
.volumeSizeInGb(123)
.build())
// the properties below are optional
.variables(List.of(VariableProperty.builder()
.variableName("variableName")
// the properties below are optional
.datasetContentVersionValue(DatasetContentVersionValueProperty.builder()
.datasetName("datasetName")
.build())
.doubleValue(123)
.outputFileUriValue(OutputFileUriValueProperty.builder()
.fileName("fileName")
.build())
.stringValue("stringValue")
.build()))
.build())
.queryAction(QueryActionProperty.builder()
.sqlQuery("sqlQuery")
// the properties below are optional
.filters(List.of(FilterProperty.builder()
.deltaTime(DeltaTimeProperty.builder()
.offsetSeconds(123)
.timeExpression("timeExpression")
.build())
.build()))
.build())
.build()))
// the properties below are optional
.contentDeliveryRules(List.of(DatasetContentDeliveryRuleProperty.builder()
.destination(DatasetContentDeliveryRuleDestinationProperty.builder()
.iotEventsDestinationConfiguration(IotEventsDestinationConfigurationProperty.builder()
.inputName("inputName")
.roleArn("roleArn")
.build())
.s3DestinationConfiguration(S3DestinationConfigurationProperty.builder()
.bucket("bucket")
.key("key")
.roleArn("roleArn")
// the properties below are optional
.glueConfiguration(GlueConfigurationProperty.builder()
.databaseName("databaseName")
.tableName("tableName")
.build())
.build())
.build())
// the properties below are optional
.entryName("entryName")
.build()))
.datasetName("datasetName")
.lateDataRules(List.of(LateDataRuleProperty.builder()
.ruleConfiguration(LateDataRuleConfigurationProperty.builder()
.deltaTimeSessionWindowConfiguration(DeltaTimeSessionWindowConfigurationProperty.builder()
.timeoutInMinutes(123)
.build())
.build())
// the properties below are optional
.ruleName("ruleName")
.build()))
.retentionPeriod(RetentionPeriodProperty.builder()
.numberOfDays(123)
.unlimited(false)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.triggers(List.of(TriggerProperty.builder()
.schedule(ScheduleProperty.builder()
.scheduleExpression("scheduleExpression")
.build())
.triggeringDataset(TriggeringDatasetProperty.builder()
.datasetName("datasetName")
.build())
.build()))
.versioningConfiguration(VersioningConfigurationProperty.builder()
.maxVersions(123)
.unlimited(false)
.build())
.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() |
Object |
getActions()
`AWS::IoTAnalytics::Dataset.Actions`.
|
default Object |
getContentDeliveryRules()
`AWS::IoTAnalytics::Dataset.ContentDeliveryRules`.
|
default String |
getDatasetName()
`AWS::IoTAnalytics::Dataset.DatasetName`.
|
default Object |
getLateDataRules()
`AWS::IoTAnalytics::Dataset.LateDataRules`.
|
default Object |
getRetentionPeriod()
`AWS::IoTAnalytics::Dataset.RetentionPeriod`.
|
default List<CfnTag> |
getTags()
`AWS::IoTAnalytics::Dataset.Tags`.
|
default Object |
getTriggers()
`AWS::IoTAnalytics::Dataset.Triggers`.
|
default Object |
getVersioningConfiguration()
`AWS::IoTAnalytics::Dataset.VersioningConfiguration`.
|
@Stability(value=Stable) @NotNull Object getActions()
@Stability(value=Stable) @Nullable default Object getContentDeliveryRules()
@Stability(value=Stable) @Nullable default String getDatasetName()
@Stability(value=Stable) @Nullable default Object getLateDataRules()
@Stability(value=Stable) @Nullable default Object getRetentionPeriod()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getTriggers()
@Stability(value=Stable) @Nullable default Object getVersioningConfiguration()
@Stability(value=Stable) static CfnDatasetProps.Builder builder()
CfnDatasetProps.Builder of CfnDatasetPropsCopyright © 2021. All rights reserved.