Skip to content

Instantly share code, notes, and snippets.

@reisjr
Created November 24, 2019 23:30
Show Gist options
  • Save reisjr/c2f82f8d6604925dc8fa3ff5f83eab7c to your computer and use it in GitHub Desktop.
Save reisjr/c2f82f8d6604925dc8fa3ff5f83eab7c to your computer and use it in GitHub Desktop.
CDK Snippets
schema = aws_kinesisanalytics.CfnApplication.InputSchemaProperty(
record_columns=[col1],
record_format=aws_kinesisanalytics.CfnApplication.RecordFormatProperty(
record_format_type="CSV",
mapping_parameters=aws_kinesisanalytics.CfnApplication.MappingParametersProperty(
csv_mapping_parameters=aws_kinesisanalytics.CfnApplication.CSVMappingParametersProperty(
record_column_delimiter=";",
record_row_delimiter="|"
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment