interface SchemaConfigurationFromCfnTableProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.SchemaConfigurationFromCfnTableProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#SchemaConfigurationFromCfnTableProps |
Java | software.amazon.awscdk.services.kinesisfirehose.SchemaConfigurationFromCfnTableProps |
Python | aws_cdk.aws_kinesisfirehose.SchemaConfigurationFromCfnTableProps |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » SchemaConfigurationFromCfnTableProps |
Options for creating a Schema for record format conversion from a glue.CfnTable.
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-lib';
const schemaConfigurationFromCfnTableProps: kinesisfirehose.SchemaConfigurationFromCfnTableProps = {
region: 'region',
versionId: 'versionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| region? | string | The region of the database the table is in. |
| version | string | Specifies the table version for the output data schema. |
region?
Type:
string
(optional, default: the region of the stack that contains the table reference is used)
The region of the database the table is in.
versionId?
Type:
string
(optional, default: LATEST)
Specifies the table version for the output data schema.
if set to LATEST, Firehose uses the most recent table version. This means that any updates to the table are automatically picked up.

.NET
Go
Java
Python
TypeScript (