interface DatabaseSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_DatabaseSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » DatabaseSourceConfigurationProperty |
The top level object for configuring streams with database as a source.
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 databaseSourceConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceConfigurationProperty = {
columns: {
exclude: ['exclude'],
include: ['include'],
},
databases: {
exclude: ['exclude'],
include: ['include'],
},
databaseSourceAuthenticationConfiguration: {
secretsManagerConfiguration: {
enabled: false,
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
databaseSourceVpcConfiguration: {
vpcEndpointServiceName: 'vpcEndpointServiceName',
},
digest: 'digest',
endpoint: 'endpoint',
port: 123,
publicCertificate: 'publicCertificate',
snapshotWatermarkTable: 'snapshotWatermarkTable',
sslMode: 'sslMode',
surrogateKeys: ['surrogateKeys'],
tables: {
exclude: ['exclude'],
include: ['include'],
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| columns? | IResolvable | Database | The list of column patterns in source database endpoint for Firehose to read from. |
| database | IResolvable | Database | The structure to configure the authentication methods for Firehose to connect to source database endpoint. |
| database | IResolvable | Database | The details of the VPC Endpoint Service which Firehose uses to create a PrivateLink to the database. |
| databases? | IResolvable | Databases | The list of database patterns in source database endpoint for Firehose to read from. |
| digest? | string | |
| endpoint? | string | The endpoint of the database server. |
| port? | number | The port of the database. This can be one of the following values. |
| public | string | |
| snapshot | string | The fully qualified name of the table in source database endpoint that Firehose uses to track snapshot progress. |
| ssl | string | The mode to enable or disable SSL when Firehose connects to the database endpoint. |
| surrogate | string[] | The optional list of table and column names used as unique key columns when taking snapshot if the tables don’t have primary keys configured. |
| tables? | IResolvable | Database | The list of table patterns in source database endpoint for Firehose to read from. |
| type? | string | The type of database engine. This can be one of the following values. |
columns?
Type:
IResolvable | Database
(optional)
The list of column patterns in source database endpoint for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
databaseSourceAuthenticationConfiguration?
Type:
IResolvable | Database
(optional)
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.
databaseSourceVpcConfiguration?
Type:
IResolvable | Database
(optional)
The details of the VPC Endpoint Service which Firehose uses to create a PrivateLink to the database.
Amazon Data Firehose is in preview release and is subject to change.
databases?
Type:
IResolvable | Databases
(optional)
The list of database patterns in source database endpoint for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
digest?
Type:
string
(optional)
endpoint?
Type:
string
(optional)
The endpoint of the database server.
Amazon Data Firehose is in preview release and is subject to change.
port?
Type:
number
(optional)
The port of the database. This can be one of the following values.
- 3306 for MySQL database type
- 5432 for PostgreSQL database type
Amazon Data Firehose is in preview release and is subject to change.
publicCertificate?
Type:
string
(optional)
snapshotWatermarkTable?
Type:
string
(optional)
The fully qualified name of the table in source database endpoint that Firehose uses to track snapshot progress.
Amazon Data Firehose is in preview release and is subject to change.
sslMode?
Type:
string
(optional)
The mode to enable or disable SSL when Firehose connects to the database endpoint.
Amazon Data Firehose is in preview release and is subject to change.
surrogateKeys?
Type:
string[]
(optional)
The optional list of table and column names used as unique key columns when taking snapshot if the tables don’t have primary keys configured.
Amazon Data Firehose is in preview release and is subject to change.
tables?
Type:
IResolvable | Database
(optional)
The list of table patterns in source database endpoint for Firehose to read from.
Amazon Data Firehose is in preview release and is subject to change.
type?
Type:
string
(optional)
The type of database engine. This can be one of the following values.
- MySQL
- PostgreSQL
Amazon Data Firehose is in preview release and is subject to change.

.NET
Go
Java
Python
TypeScript