/* 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::IoT::TopicRuleDestination */ export interface AwsIotTopicruledestination { /** * Amazon Resource Name (ARN). */ Arn?: string; /** * The status of the TopicRuleDestination. */ Status?: "ENABLED" | "IN_PROGRESS" | "DISABLED"; HttpUrlProperties?: HttpUrlDestinationSummary; /** * The reasoning for the current status of the TopicRuleDestination. */ StatusReason?: string; VpcProperties?: VpcDestinationProperties; } /** * HTTP URL destination properties. */ export interface HttpUrlDestinationSummary { ConfirmationUrl?: string; } /** * VPC destination properties. */ export interface VpcDestinationProperties { SubnetIds?: string[]; SecurityGroups?: string[]; VpcId?: string; RoleArn?: string; }