Module Values.GetStepResponseSource

Gets a step.

Sourcetype nonrec t = {
  1. stepId : StepId.t option;
    (*

    The step ID.

    *)
  2. name : StepName.t option;
    (*

    The name of the step.

    *)
  3. lifecycleStatus : StepLifecycleStatus.t option;
    (*

    The life cycle status of the step.

    *)
  4. lifecycleStatusMessage : String_.t option;
    (*

    A message that describes the lifecycle status of the step.

    *)
  5. taskRunStatus : TaskRunStatus.t option;
    (*

    The task run status for the job.

    *)
  6. taskRunStatusCounts : TaskRunStatusCounts.t option;
    (*

    The number of tasks running on the job.

    *)
  7. taskFailureRetryCount : TaskFailureRetryCount.t option;
    (*

    The total number of times tasks from the step failed and were retried.

    *)
  8. targetTaskRunStatus : StepTargetTaskRunStatus.t option;
    (*

    The task status with which the job started.

    *)
  9. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  10. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  11. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  12. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
  13. startedAt : StartedAt.t option;
    (*

    The date and time the resource started running.

    *)
  14. endedAt : EndedAt.t option;
    (*

    The date and time the resource ended running.

    *)
  15. dependencyCounts : DependencyCounts.t option;
    (*

    The number of dependencies in the step.

    *)
  16. requiredCapabilities : StepRequiredCapabilities.t option;
    (*

    The required capabilities of the step.

    *)
  17. parameterSpace : ParameterSpace.t option;
    (*

    A list of step parameters and the combination expression for the step.

    *)
  18. description : StepDescription.t option;
    (*

    The description of the step. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.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 : ?stepId:??? -> ?name:??? -> ?lifecycleStatus:??? -> ?lifecycleStatusMessage:??? -> ?taskRunStatus:??? -> ?taskRunStatusCounts:??? -> ?taskFailureRetryCount:??? -> ?targetTaskRunStatus:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?startedAt:??? -> ?endedAt:??? -> ?dependencyCounts:??? -> ?requiredCapabilities:??? -> ?parameterSpace:??? -> ?description:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.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 | `InternalServerErrorException of InternalServerErrorException.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 | `Integer of TaskFailureRetryCount.t | `Map of ([> `Enum of string ] * [> `Integer of Integer.t ]) list | `String of StepId.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of AttributeCapabilityValue.t ] list | `String of AttributeCapabilityName.t | `Structure of (string * [> `Enum of string | `Integer of DefaultTaskCount.t ]) list ]) list ] list | `String of CombinationExpression.t ]) list | `Timestamp of CreatedAt.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