aws-cdk-lib.aws_kinesisanalytics.CfnApplicationReferenceDataSource.RecordFormatProperty

interface RecordFormatProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalytics.CfnApplicationReferenceDataSource.RecordFormatProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationReferenceDataSource_RecordFormatProperty
Javasoftware.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSource.RecordFormatProperty
Pythonaws_cdk.aws_kinesisanalytics.CfnApplicationReferenceDataSource.RecordFormatProperty
TypeScript aws-cdk-lib » aws_kinesisanalytics » CfnApplicationReferenceDataSource » RecordFormatProperty

Describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const recordFormatProperty: kinesisanalytics.CfnApplicationReferenceDataSource.RecordFormatProperty = {
  recordFormatType: 'recordFormatType',

  // the properties below are optional
  mappingParameters: {
    csvMappingParameters: {
      recordColumnDelimiter: 'recordColumnDelimiter',
      recordRowDelimiter: 'recordRowDelimiter',
    },
    jsonMappingParameters: {
      recordRowPath: 'recordRowPath',
    },
  },
};

Properties

NameTypeDescription
recordFormatTypestringThe type of record format.
mappingParameters?IResolvable | MappingParametersPropertyWhen configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

recordFormatType

Type: string

The type of record format.


mappingParameters?

Type: IResolvable | MappingParametersProperty (optional)

When configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.