Module Values.CentralizationRuleSummarySource

A summary of a centralization rule's key properties and status.

Sourcetype nonrec t = {
  1. ruleName : RuleName.t option;
    (*

    The name of the organization centralization rule.

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

    The Amazon Resource Name (ARN) of the organization centralization rule.

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

    The Amazon Web Services Account that created the organization centralization rule.

    *)
  4. createdTimeStamp : Long.t option;
    (*

    The timestamp when the organization centralization rule was created.

    *)
  5. createdRegion : Region.t option;
    (*

    The Amazon Web Services region where the organization centralization rule was created.

    *)
  6. lastUpdateTimeStamp : Long.t option;
    (*

    The timestamp when the organization centralization rule was last updated.

    *)
  7. ruleHealth : RuleHealth.t option;
    (*

    The health status of the organization centralization rule.

    *)
  8. failureReason : CentralizationFailureReason.t option;
    (*

    The reason why an organization centralization rule is marked UNHEALTHY.

    *)
  9. destinationAccountId : String_.t option;
    (*

    The primary destination account of the organization centralization rule.

    *)
  10. destinationRegion : Region.t option;
    (*

    The primary destination region of the organization centralization rule.

    *)
}
Sourceval make : ?ruleName:??? -> ?ruleArn:??? -> ?creatorAccountId:??? -> ?createdTimeStamp:??? -> ?createdRegion:??? -> ?lastUpdateTimeStamp:??? -> ?ruleHealth:??? -> ?failureReason:??? -> ?destinationAccountId:??? -> ?destinationRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of RuleName.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