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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnDeliveryStreamPropsMixin.SecretsManagerConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecretsManagerConfiguration
Returns union: eitherIResolvableorCfnDeliveryStreamPropsMixin.SecretsManagerConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty.Builder builder()
-