SchemaConfigurationFromCfnTableProps

class aws_cdk.aws_kinesisfirehose.SchemaConfigurationFromCfnTableProps(*, region=None, version_id=None)

Bases: object

Options for creating a Schema for record format conversion from a glue.CfnTable.

Parameters:
  • region (Optional[str]) – The region of the database the table is in. Default: the region of the stack that contains the table reference is used

  • version_id (Optional[str]) – 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. Default: LATEST

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_kinesisfirehose as kinesisfirehose

schema_configuration_from_cfn_table_props = kinesisfirehose.SchemaConfigurationFromCfnTableProps(
    region="region",
    version_id="versionId"
)

Attributes

region

The region of the database the table is in.

Default:

the region of the stack that contains the table reference is used

version_id

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.

Default:

LATEST

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid