interface DatabaseSourceAuthenticationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_DatabaseSourceAuthenticationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » CfnDeliveryStreamPropsMixin » DatabaseSourceAuthenticationConfigurationProperty |
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 { aws_kinesisfirehose as kinesisfirehose } from '@aws-cdk/cfn-property-mixins';
const databaseSourceAuthenticationConfigurationProperty: kinesisfirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty = {
secretsManagerConfiguration: {
enabled: false,
roleArn: 'roleArn',
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| secrets | IResolvable | Secrets |
secretsManagerConfiguration?
Type:
IResolvable | Secrets
(optional)

.NET
Go
Java
Python
TypeScript