interface CfnApplicationReferenceDataSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationReferenceDataSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationReferenceDataSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationReferenceDataSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationReferenceDataSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationReferenceDataSourceMixinProps |
Properties for CfnApplicationReferenceDataSourcePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisanalyticsv2_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalyticsv2';
const cfnApplicationReferenceDataSourceMixinProps: kinesisanalyticsv2_mixins.CfnApplicationReferenceDataSourceMixinProps = {
applicationName: 'applicationName',
referenceDataSource: {
referenceSchema: {
recordColumns: [{
mapping: 'mapping',
name: 'name',
sqlType: 'sqlType',
}],
recordEncoding: 'recordEncoding',
recordFormat: {
mappingParameters: {
csvMappingParameters: {
recordColumnDelimiter: 'recordColumnDelimiter',
recordRowDelimiter: 'recordRowDelimiter',
},
jsonMappingParameters: {
recordRowPath: 'recordRowPath',
},
},
recordFormatType: 'recordFormatType',
},
},
s3ReferenceDataSource: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
},
tableName: 'tableName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The name of the application. |
| reference | IResolvable | Reference | For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table. |
applicationName?
Type:
string
(optional)
The name of the application.
referenceDataSource?
Type:
IResolvable | Reference
(optional)
For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.

.NET
Go
Java
Python
TypeScript