Interface CfnDataset.S3DestinationConfigurationProperty

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

@Stability(Stable) public static interface CfnDataset.S3DestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration information for delivery of dataset contents to Amazon Simple Storage Service (Amazon S3).

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.*;
 S3DestinationConfigurationProperty s3DestinationConfigurationProperty = S3DestinationConfigurationProperty.builder()
         .bucket("bucket")
         .key("key")
         .roleArn("roleArn")
         // the properties below are optional
         .glueConfiguration(GlueConfigurationProperty.builder()
                 .databaseName("databaseName")
                 .tableName("tableName")
                 .build())
         .build();
 

See Also: