/* 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. */ /** * Monitor ARN */ export type Arn = string; /** * AWS Cost Anomaly Detection leverages advanced Machine Learning technologies to identify anomalous spend and root causes, so you can quickly take action. You can use Cost Anomaly Detection by creating monitor. */ export interface AwsCeAnomalymonitor { MonitorArn?: Arn; MonitorType: "DIMENSIONAL" | "CUSTOM"; /** * The name of the monitor. */ MonitorName: string; /** * The date when the monitor was created. */ CreationDate?: string; /** * The date when the monitor last evaluated for anomalies. */ LastEvaluatedDate?: string; /** * The date when the monitor was last updated. */ LastUpdatedDate?: string; /** * The dimensions to evaluate */ MonitorDimension?: "SERVICE"; MonitorSpecification?: string; /** * The value for evaluated dimensions. */ DimensionalValueCount?: number; /** * Tags to assign to monitor. * * @minItems 0 * @maxItems 200 */ ResourceTags?: ResourceTag[]; } /** * A key-value pair to associate with a resource. */ export interface ResourceTag { /** * The key name for the tag. */ Key: string; /** * The value for the tag. */ Value: string; }