Module Values.GetCloudWatchAlarmTemplateResponseContentSource

Placeholder documentation for GetCloudWatchAlarmTemplateResponseContent

Sourcetype nonrec t = {
  1. arn : string;
    (*

    A cloudwatch alarm template's ARN (Amazon Resource Name)

    *)
  2. comparisonOperator : CloudWatchAlarmTemplateComparisonOperator.t;
  3. createdAt : string;
  4. datapointsToAlarm : int option;
    (*

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

    *)
  5. description : string option;
    (*

    A resource's optional description.

    *)
  6. evaluationPeriods : int;
    (*

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

    *)
  7. groupId : string;
    (*

    A cloudwatch alarm template group's id. AWS provided template groups have ids that start with `aws-`

    *)
  8. id : string;
    (*

    A cloudwatch alarm template's id. AWS provided templates have ids that start with `aws-`

    *)
  9. metricName : string;
    (*

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

    *)
  10. modifiedAt : string option;
  11. name : string;
    (*

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

    *)
  12. period : int;
    (*

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

    *)
  13. statistic : CloudWatchAlarmTemplateStatistic.t;
  14. tags : TagMap.t option;
  15. targetResourceType : CloudWatchAlarmTemplateTargetResourceType.t;
  16. threshold : float;
    (*

    The threshold value to compare with the specified statistic.

    *)
  17. treatMissingData : CloudWatchAlarmTemplateTreatMissingData.t;
}
Sourceval context_ : string
Sourceval make : ?datapointsToAlarm:??? -> ?description:??? -> ?modifiedAt:??? -> ?tags:??? -> arn:string -> comparisonOperator:CloudWatchAlarmTemplateComparisonOperator.t -> createdAt:string -> evaluationPeriods:int -> groupId:string -> id: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 | `Timestamp 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