@Stability(value=Stable)
public static interface CfnDataset.DatasetContentDeliveryRuleProperty
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.*;
DatasetContentDeliveryRuleProperty datasetContentDeliveryRuleProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.DatasetContentDeliveryRuleProperty.Builder
A builder for
CfnDataset.DatasetContentDeliveryRuleProperty |
static class |
CfnDataset.DatasetContentDeliveryRuleProperty.Jsii$Proxy
An implementation for
CfnDataset.DatasetContentDeliveryRuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.DatasetContentDeliveryRuleProperty.Builder |
builder() |
Object |
getDestination()
The destination to which dataset contents are delivered.
|
default String |
getEntryName()
The name of the dataset content delivery rules entry.
|
@Stability(value=Stable) @NotNull Object getDestination()
@Stability(value=Stable) @Nullable default String getEntryName()
@Stability(value=Stable) static CfnDataset.DatasetContentDeliveryRuleProperty.Builder builder()
Copyright © 2022. All rights reserved.