@Stability(value=Stable)
public static interface CfnDataset.DatasetContentDeliveryRuleDestinationProperty
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.*;
DatasetContentDeliveryRuleDestinationProperty datasetContentDeliveryRuleDestinationProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.DatasetContentDeliveryRuleDestinationProperty.Builder
A builder for
CfnDataset.DatasetContentDeliveryRuleDestinationProperty |
static class |
CfnDataset.DatasetContentDeliveryRuleDestinationProperty.Jsii$Proxy
An implementation for
CfnDataset.DatasetContentDeliveryRuleDestinationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.DatasetContentDeliveryRuleDestinationProperty.Builder |
builder() |
default Object |
getIotEventsDestinationConfiguration()
Configuration information for delivery of dataset contents to AWS IoT Events .
|
default Object |
getS3DestinationConfiguration()
Configuration information for delivery of dataset contents to Amazon S3.
|
@Stability(value=Stable) @Nullable default Object getIotEventsDestinationConfiguration()
@Stability(value=Stable) @Nullable default Object getS3DestinationConfiguration()
@Stability(value=Stable) static CfnDataset.DatasetContentDeliveryRuleDestinationProperty.Builder builder()
Copyright © 2022. All rights reserved.