Interface CfnDeliveryStream.SnowflakeDestinationConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.SnowflakeDestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configure Snowflake destination.

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.*;
 SnowflakeDestinationConfigurationProperty snowflakeDestinationConfigurationProperty = SnowflakeDestinationConfigurationProperty.builder()
         .accountUrl("accountUrl")
         .database("database")
         .privateKey("privateKey")
         .roleArn("roleArn")
         .s3Configuration(S3DestinationConfigurationProperty.builder()
                 .bucketArn("bucketArn")
                 .roleArn("roleArn")
                 // the properties below are optional
                 .bufferingHints(BufferingHintsProperty.builder()
                         .intervalInSeconds(123)
                         .sizeInMBs(123)
                         .build())
                 .cloudWatchLoggingOptions(CloudWatchLoggingOptionsProperty.builder()
                         .enabled(false)
                         .logGroupName("logGroupName")
                         .logStreamName("logStreamName")
                         .build())
                 .compressionFormat("compressionFormat")
                 .encryptionConfiguration(EncryptionConfigurationProperty.builder()
                         .kmsEncryptionConfig(KMSEncryptionConfigProperty.builder()
                                 .awskmsKeyArn("awskmsKeyArn")
                                 .build())
                         .noEncryptionConfig("noEncryptionConfig")
                         .build())
                 .errorOutputPrefix("errorOutputPrefix")
                 .prefix("prefix")
                 .build())
         .schema("schema")
         .table("table")
         .user("user")
         // the properties below are optional
         .cloudWatchLoggingOptions(CloudWatchLoggingOptionsProperty.builder()
                 .enabled(false)
                 .logGroupName("logGroupName")
                 .logStreamName("logStreamName")
                 .build())
         .contentColumnName("contentColumnName")
         .dataLoadingOption("dataLoadingOption")
         .keyPassphrase("keyPassphrase")
         .metaDataColumnName("metaDataColumnName")
         .processingConfiguration(ProcessingConfigurationProperty.builder()
                 .enabled(false)
                 .processors(List.of(ProcessorProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .parameters(List.of(ProcessorParameterProperty.builder()
                                 .parameterName("parameterName")
                                 .parameterValue("parameterValue")
                                 .build()))
                         .build()))
                 .build())
         .retryOptions(SnowflakeRetryOptionsProperty.builder()
                 .durationInSeconds(123)
                 .build())
         .s3BackupMode("s3BackupMode")
         .snowflakeRoleConfiguration(SnowflakeRoleConfigurationProperty.builder()
                 .enabled(false)
                 .snowflakeRole("snowflakeRole")
                 .build())
         .snowflakeVpcConfiguration(SnowflakeVpcConfigurationProperty.builder()
                 .privateLinkVpceId("privateLinkVpceId")
                 .build())
         .build();
 

See Also: