Interface CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The structure to configure the authentication methods for Firehose to connect to source database endpoint.

Amazon Data Firehose is in preview release and is subject to change.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.*;
 DatabaseSourceAuthenticationConfigurationProperty databaseSourceAuthenticationConfigurationProperty = DatabaseSourceAuthenticationConfigurationProperty.builder()
         .secretsManagerConfiguration(SecretsManagerConfigurationProperty.builder()
                 .enabled(false)
                 .roleArn("roleArn")
                 .secretArn("secretArn")
                 .build())
         .build();
 

See Also: