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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataset.DatasetContentDeliveryRuleDestinationProperty
static final class
An implementation forCfnDataset.DatasetContentDeliveryRuleDestinationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIotEventsDestinationConfiguration
Configuration information for delivery of dataset contents to AWS IoT Events .- See Also:
-
getS3DestinationConfiguration
Configuration information for delivery of dataset contents to Amazon S3.- See Also:
-
builder
@Stability(Stable) static CfnDataset.DatasetContentDeliveryRuleDestinationProperty.Builder builder()
-