Interface CfnDeliveryStream.SchemaConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.SchemaConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the schema to which you want Firehose to configure your data before it writes it to Amazon S3.

This parameter is required if Enabled is set to true.

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.kinesisfirehose.*;
 SchemaConfigurationProperty schemaConfigurationProperty = SchemaConfigurationProperty.builder()
         .catalogId("catalogId")
         .databaseName("databaseName")
         .region("region")
         .roleArn("roleArn")
         .tableName("tableName")
         .versionId("versionId")
         .build();
 

See Also: