interface DatabaseSourceAuthenticationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_DatabaseSourceAuthenticationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceAuthenticationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const databaseSourceAuthenticationConfigurationProperty: kinesisfirehose_mixins.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