Interface CfnDeliveryStream.SnowflakeRoleConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.SnowflakeRoleConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Optionally configure a Snowflake role.

Otherwise the default user role will be used.

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.*;
 SnowflakeRoleConfigurationProperty snowflakeRoleConfigurationProperty = SnowflakeRoleConfigurationProperty.builder()
         .enabled(false)
         .snowflakeRole("snowflakeRole")
         .build();
 

See Also: