Module CE.AnomalyMonitor

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-anomalymonitor.html

type resource_tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ce-anomalymonitor-resourcetag.html

type properties = {
  1. monitor_type : string;
  2. resource_tags : resource_tag list option;
  3. monitor_name : string;
  4. monitor_specification : string option;
  5. monitor_dimension : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-anomalymonitor.html;

val make_properties : monitor_type:string -> ?resource_tags:resource_tag list -> monitor_name:string -> ?monitor_specification:string -> ?monitor_dimension:string -> unit -> properties
val make_resource_tag : value:string -> key:string -> unit -> resource_tag
val yojson_of_resource_tag : resource_tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. last_updated_date : string;
  3. creation_date : string;
  4. last_evaluated_date : string;
  5. monitor_arn : string;
  6. dimensional_value_count : int;
}
val create_attributes : string -> attributes
val cloudformation_type : string