/* 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. */ /** * Definition of AWS::ResourceExplorer2::View Resource Type */ export interface AwsResourceexplorer2View { IncludedProperties?: IncludedProperty[]; Filters?: Filters; Tags?: TagMap; ViewArn?: string; ViewName: string; } export interface IncludedProperty { Name: string; } export interface Filters { FilterString: string; } export interface TagMap { /** * This interface was referenced by `TagMap`'s JSON-Schema definition * via the `patternProperty` ".+". */ [k: string]: string; }