/* 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::IoTAnalytics::Pipeline */ export interface AwsIotanalyticsPipeline { Id?: string; PipelineName?: string; /** * @minItems 1 * @maxItems 50 */ Tags?: [Tag, ...Tag[]]; /** * @minItems 1 * @maxItems 25 */ PipelineActivities: [Activity, ...Activity[]]; } export interface Tag { Key: string; Value: string; } export interface Activity { SelectAttributes?: SelectAttributes; Datastore?: Datastore; Filter?: Filter; AddAttributes?: AddAttributes; Channel?: Channel; DeviceShadowEnrich?: DeviceShadowEnrich; Math?: Math; Lambda?: Lambda; DeviceRegistryEnrich?: DeviceRegistryEnrich; RemoveAttributes?: RemoveAttributes; } export interface SelectAttributes { Next?: string; /** * @minItems 1 * @maxItems 50 */ Attributes: [string, ...string[]]; Name: string; } export interface Datastore { DatastoreName: string; Name: string; } export interface Filter { Filter: string; Next?: string; Name: string; } export interface AddAttributes { Next?: string; Attributes: { /** * This interface was referenced by `undefined`'s JSON-Schema definition * via the `patternProperty` "^.*$". */ [k: string]: string; }; Name: string; } export interface Channel { ChannelName: string; Next?: string; Name: string; } export interface DeviceShadowEnrich { Attribute: string; Next?: string; ThingName: string; RoleArn: string; Name: string; } export interface Math { Attribute: string; Next?: string; Math: string; Name: string; } export interface Lambda { BatchSize: number; Next?: string; LambdaName: string; Name: string; } export interface DeviceRegistryEnrich { Attribute: string; Next?: string; ThingName: string; RoleArn: string; Name: string; } export interface RemoveAttributes { Next?: string; /** * @minItems 1 * @maxItems 50 */ Attributes: [string, ...string[]]; Name: string; }