Module Values.GetAutomatedReasoningPolicyBuildWorkflowResultAssetsRequestSource

Retrieves the resulting assets from a completed Automated Reasoning policy build workflow, including build logs, quality reports, and generated policy artifacts.

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

    The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflow assets you want to retrieve.

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

    The unique identifier of the build workflow whose result assets you want to retrieve.

    *)
  3. assetType : AutomatedReasoningPolicyBuildResultAssetType.t;
    (*

    The type of asset to retrieve (e.g., BUILD_LOG, QUALITY_REPORT, POLICY_DEFINITION, GENERATED_TEST_CASES, POLICY_SCENARIOS, FIDELITY_REPORT, ASSET_MANIFEST, SOURCE_DOCUMENT).

    *)
  4. assetId : AutomatedReasoningPolicyBuildResultAssetId.t option;
    (*

    The unique identifier of the specific asset to retrieve when multiple assets of the same type exist. This is required when retrieving SOURCE_DOCUMENT assets, as multiple source documents may have been used in the workflow. The asset ID can be obtained from the asset manifest.

    *)
}
Sourceval context_ : string
Sourceval make : ?assetId:??? -> policyArn:AutomatedReasoningPolicyArn.t -> buildWorkflowId:AutomatedReasoningPolicyBuildWorkflowId.t -> assetType:AutomatedReasoningPolicyBuildResultAssetType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AutomatedReasoningPolicyArn.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