Module Values.AutomatedReasoningPolicyBuildWorkflowSummarySource

Provides a summary of a policy build workflow, including its current status, timing information, and key identifiers.

Sourcetype nonrec t = {
  1. policyArn : AutomatedReasoningPolicyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Automated Reasoning policy associated with this build workflow.

    *)
  2. buildWorkflowId : AutomatedReasoningPolicyBuildWorkflowId.t option;
    (*

    The unique identifier of the build workflow.

    *)
  3. status : AutomatedReasoningPolicyBuildWorkflowStatus.t option;
    (*

    The current status of the build workflow (e.g., RUNNING, COMPLETED, FAILED, CANCELLED).

    *)
  4. buildWorkflowType : AutomatedReasoningPolicyBuildWorkflowType.t option;
    (*

    The type of build workflow (e.g., DOCUMENT_INGESTION, POLICY_REPAIR).

    *)
  5. createdAt : Timestamp.t option;
    (*

    The timestamp when the build workflow was created.

    *)
  6. updatedAt : Timestamp.t option;
    (*

    The timestamp when the build workflow was last updated.

    *)
}
Sourceval make : ?policyArn:??? -> ?buildWorkflowId:??? -> ?status:??? -> ?buildWorkflowType:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AutomatedReasoningPolicyArn.t | `Timestamp of Timestamp.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