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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataset.DatasetContentDeliveryRuleProperty
static final class
An implementation forCfnDataset.DatasetContentDeliveryRuleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The destination to which dataset contents are delivered.- See Also:
-
getEntryName
The name of the dataset content delivery rules entry.- See Also:
-
builder
-