Interface CfnDataset.DatasetContentDeliveryRuleProperty

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

@Stability(Stable) public static interface CfnDataset.DatasetContentDeliveryRuleProperty extends software.amazon.jsii.JsiiSerializable
When dataset contents are created, they are delivered to destination specified here.

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

See Also: