Module Values.RegionStatusSource

Represents the status of a multi-region operation in a specific Amazon Web Services Region. This structure is used to report per-region progress for both telemetry evaluation and telemetry rule replication.

Sourcetype nonrec t = {
  1. region : Region.t option;
    (*

    The Amazon Web Services Region code (for example, eu-west-1 or us-west-2) that this status applies to.

    *)
  2. status : String_.t option;
    (*

    The status of the operation in this region. For telemetry evaluation, valid values include STARTING, RUNNING, and FAILED_START. For telemetry rules, valid values include PENDING, ACTIVE, and FAILED.

    *)
  3. failureReason : String_.t option;
    (*

    The reason for a failure status in this region. This field is only populated when Status indicates a failure.

    *)
  4. ruleArn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the telemetry rule in this spoke region. This field is only present for telemetry rule region statuses and is populated when the rule has been successfully created in the spoke region (status is ACTIVE).

    *)
}
Sourceval make : ?region:??? -> ?status:??? -> ?failureReason:??? -> ?ruleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Region.t ]) 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