Module Values.UpdateCloudWatchAlarmTemplateResponseSource

Placeholder documentation for UpdateCloudWatchAlarmTemplateResponse

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

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

    *)
  2. comparisonOperator : CloudWatchAlarmTemplateComparisonOperator.t option;
  3. createdAt : string option;
  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 option;
    (*

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

    *)
  7. groupId : string option;
    (*

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

    *)
  8. id : string option;
    (*

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

    *)
  9. metricName : string option;
    (*

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

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

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

    *)
  12. period : int option;
    (*

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

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

    The threshold value to compare with the specified statistic.

    *)
  17. treatMissingData : CloudWatchAlarmTemplateTreatMissingData.t option;
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `ForbiddenException of ForbiddenException.t
  4. | `InternalServerErrorException of InternalServerErrorException.t
  5. | `NotFoundException of NotFoundException.t
  6. | `TooManyRequestsException of TooManyRequestsException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?comparisonOperator:??? -> ?createdAt:??? -> ?datapointsToAlarm:??? -> ?description:??? -> ?evaluationPeriods:??? -> ?groupId:??? -> ?id:??? -> ?metricName:??? -> ?modifiedAt:??? -> ?name:??? -> ?period:??? -> ?statistic:??? -> ?tags:??? -> ?targetResourceType:??? -> ?threshold:??? -> ?treatMissingData:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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