/* 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. */ /** * An entity type for fraud detector. */ export interface AwsFrauddetectorEntitytype { /** * The name of the entity type. */ Name: string; /** * Tags associated with this entity type. * * @maxItems 200 */ Tags?: Tag[]; /** * The entity type description. */ Description?: string; /** * The entity type ARN. */ Arn?: string; /** * The timestamp when the entity type was created. */ CreatedTime?: string; /** * The timestamp when the entity type was last updated. */ LastUpdatedTime?: string; } export interface Tag { Key: string; Value: string; }