Module Values.GetAutomatedReasoningPolicyBuildWorkflowResponseSource

Retrieves detailed information about an Automated Reasoning policy build workflow, including its status, configuration, and metadata.

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

    The Amazon Resource Name (ARN) of the Automated Reasoning policy.

    *)
  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 being executed (e.g., DOCUMENT_INGESTION, POLICY_REPAIR).

    *)
  5. documentName : AutomatedReasoningPolicyBuildDocumentName.t option;
    (*

    The name of the source document used in the build workflow.

    *)
  6. documentContentType : AutomatedReasoningPolicyBuildDocumentContentType.t option;
    (*

    The content type of the source document (e.g., text/plain, application/pdf).

    *)
  7. documentDescription : AutomatedReasoningPolicyBuildDocumentDescription.t option;
    (*

    A detailed description of the document's content and how it should be used in the policy generation process.

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

    The timestamp when the build workflow was created.

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

    The timestamp when the build workflow was last updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?policyArn:??? -> ?buildWorkflowId:??? -> ?status:??? -> ?buildWorkflowType:??? -> ?documentName:??? -> ?documentContentType:??? -> ?documentDescription:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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