/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::KinesisAnalytics::ApplicationReferenceDataSource */ export interface AwsKinesisanalyticsApplicationreferencedatasource { Id?: string; ApplicationName: string; ReferenceDataSource: ReferenceDataSource; } export interface ReferenceDataSource { ReferenceSchema: ReferenceSchema; TableName?: string; S3ReferenceDataSource?: S3ReferenceDataSource; } export interface ReferenceSchema { RecordEncoding?: string; RecordColumns: RecordColumn[]; RecordFormat: RecordFormat; } export interface RecordColumn { Mapping?: string; SqlType: string; Name: string; } export interface RecordFormat { MappingParameters?: MappingParameters; RecordFormatType: string; } export interface MappingParameters { JSONMappingParameters?: JSONMappingParameters; CSVMappingParameters?: CSVMappingParameters; } export interface JSONMappingParameters { RecordRowPath: string; } export interface CSVMappingParameters { RecordRowDelimiter: string; RecordColumnDelimiter: string; } export interface S3ReferenceDataSource { BucketARN: string; FileKey: string; ReferenceRoleARN: string; }