Module Values.CreateCloudWatchAlarmTemplateRequestContentSource

Placeholder documentation for CreateCloudWatchAlarmTemplateRequestContent

Sourcetype nonrec t = {
  1. comparisonOperator : CloudWatchAlarmTemplateComparisonOperator.t;
  2. datapointsToAlarm : int option;
    (*

    The number of datapoints within the evaluation period that must be breaching to trigger the alarm.

    *)
  3. description : string option;
    (*

    A resource's optional description.

    *)
  4. evaluationPeriods : int;
    (*

    The number of periods over which data is compared to the specified threshold.

    *)
  5. groupIdentifier : string;
    (*

    A cloudwatch alarm template group's identifier. Can be either be its id or current name.

    *)
  6. metricName : string;
    (*

    The name of the metric associated with the alarm. Must be compatible with targetResourceType.

    *)
  7. name : string;
    (*

    A resource's name. Names must be unique within the scope of a resource type in a specific region.

    *)
  8. period : int;
    (*

    The period, in seconds, over which the specified statistic is applied.

    *)
  9. statistic : CloudWatchAlarmTemplateStatistic.t;
  10. tags : TagMap.t option;
  11. targetResourceType : CloudWatchAlarmTemplateTargetResourceType.t;
  12. threshold : float;
    (*

    The threshold value to compare with the specified statistic.

    *)
  13. treatMissingData : CloudWatchAlarmTemplateTreatMissingData.t;
  14. requestId : string option;
    (*

    An ID that you assign to a create request. This ID ensures idempotency when creating resources.

    *)
}
Sourceval context_ : string
Sourceval make : ?datapointsToAlarm:??? -> ?description:??? -> ?tags:??? -> ?requestId:??? -> comparisonOperator:CloudWatchAlarmTemplateComparisonOperator.t -> evaluationPeriods:int -> groupIdentifier:string -> metricName:string -> name:string -> period:int -> statistic:CloudWatchAlarmTemplateStatistic.t -> targetResourceType:CloudWatchAlarmTemplateTargetResourceType.t -> threshold:float -> treatMissingData:CloudWatchAlarmTemplateTreatMissingData.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t