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