Module Values.DescribeExecutionResponseSource

Retrieves information about the execution.

Sourcetype nonrec t = {
  1. executionId : ID.t option;
    (*

    The ID of the execution.

    *)
  2. actionType : Name.t option;
    (*

    The type of action exectued.

    *)
  3. targetResource : TargetResource.t option;
  4. targetResourceVersion : Version.t option;
    (*

    The version of the target resource.

    *)
  5. resolveTo : ResolveTo.t option;
    (*

    The detailed resource this execution resolves to.

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

    The time the process started.

    *)
  7. executionEndTime : Timestamp.t option;
    (*

    The time the process ended.

    *)
  8. executionStatus : ExecutionStatus.t option;
    (*

    The status of the execution process.

    *)
  9. executionResult : ExecutionResult.t option;
    (*

    The result of the execution.

    *)
  10. executionDetails : ExecutionDetails.t option;
    (*

    Provides detailed information about the execution of your anomaly detection models. This includes model metrics and training timestamps for both training and inference actions. The training action (Amazon Web Services/ANOMALY_DETECTION_TRAINING), includes performance metrics that help you compare different versions of your anomaly detection models. These metrics provide insights into the model's performance during the training process. The inference action (Amazon Web Services/ANOMALY_DETECTION_INFERENCE), includes information about the results of executing your anomaly detection models. This helps you understand the output of your models and assess their performance.

    *)
  11. executionEntityVersion : Version.t option;
    (*

    Entity version used for the execution.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalFailureException of InternalFailureException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?executionId:??? -> ?actionType:??? -> ?targetResource:??? -> ?targetResourceVersion:??? -> ?resolveTo:??? -> ?executionStartTime:??? -> ?executionEndTime:??? -> ?executionStatus:??? -> ?executionResult:??? -> ?executionDetails:??? -> ?executionEntityVersion:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ExecutionResultKey.t ] * [> `String of ExecutionResultValue.t ]) list | `String of ID.t | `Structure of (string * [> `Enum of string | `String of ID.t ]) list | `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