Interface CfnDataset.DatasetContentDeliveryRuleDestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.DatasetContentDeliveryRuleDestinationProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.DatasetContentDeliveryRuleDestinationProperty extends software.amazon.jsii.JsiiSerializable
The destination to which dataset contents are delivered.

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();
 

See Also: