Module Values.GetNotebookRunOutputSource

Gets the details of a notebook run in Amazon SageMaker Unified Studio.

Sourcetype nonrec t = {
  1. id : NotebookRunId.t option;
    (*

    The identifier of the notebook run.

    *)
  2. domainId : DomainId.t option;
    (*

    The identifier of the Amazon SageMaker Unified Studio domain.

    *)
  3. owningProjectId : ProjectId.t option;
    (*

    The identifier of the project that owns the notebook run.

    *)
  4. notebookId : NotebookId.t option;
    (*

    The identifier of the notebook.

    *)
  5. scheduleId : ScheduleId.t option;
    (*

    The identifier of the schedule associated with the notebook run.

    *)
  6. status : NotebookRunStatus.t option;
    (*

    The status of the notebook run.

    *)
  7. cellOrder : CellOrder.t option;
    (*

    The ordered list of cells in the notebook run.

    *)
  8. metadata : Metadata.t option;
    (*

    The metadata of the notebook run.

    *)
  9. parameters : Parameters.t option;
    (*

    The sensitive parameters of the notebook run.

    *)
  10. computeConfiguration : ComputeConfig.t option;
    (*

    The compute configuration of the notebook run.

    *)
  11. networkConfiguration : NetworkConfig.t option;
    (*

    The network configuration of the notebook run.

    *)
  12. timeoutConfiguration : TimeoutConfig.t option;
    (*

    The timeout configuration of the notebook run.

    *)
  13. environmentConfiguration : EnvironmentConfig.t option;
    (*

    The environment configuration of the notebook run, including image version and package settings.

    *)
  14. storageConfiguration : StorageConfig.t option;
    (*

    The storage configuration of the notebook run, including the Amazon Simple Storage Service path and KMS key ARN.

    *)
  15. triggerSource : TriggerSource.t option;
    (*

    The source that triggered the notebook run.

    *)
  16. error : NotebookRunError.t option;
    (*

    The error details if the notebook run failed.

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

    The timestamp of when the notebook run was created.

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

    The identifier of the user who created the notebook run.

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

    The timestamp of when the notebook run was last updated.

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

    The identifier of the user who last updated the notebook run.

    *)
  21. startedAt : Timestamp.t option;
    (*

    The timestamp of when the notebook run started executing.

    *)
  22. completedAt : Timestamp.t option;
    (*

    The timestamp of when the notebook run completed.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `UnauthorizedException of UnauthorizedException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?domainId:??? -> ?owningProjectId:??? -> ?notebookId:??? -> ?scheduleId:??? -> ?status:??? -> ?cellOrder:??? -> ?metadata:??? -> ?parameters:??? -> ?computeConfiguration:??? -> ?networkConfiguration:??? -> ?timeoutConfiguration:??? -> ?environmentConfiguration:??? -> ?storageConfiguration:??? -> ?triggerSource:??? -> ?error:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?startedAt:??? -> ?completedAt:??? -> 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 | `UnauthorizedException of UnauthorizedException.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 | `UnauthorizedException of UnauthorizedException.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 | `List of [> `Structure of 'a list ] list | `Map of ([> `String of MetadataKey.t ] * [> `String of MetadataValue.t ]) list | `String of NotebookRunId.t | `Structure of (string * [> `Enum of string | `Integer of TimeoutConfigRunTimeoutInMinutesInteger.t | `List of [> `String of String_.t ] list | `String of InstanceType.t | `Structure of (string * [> `Enum of string | `String of PackageConfigPackageSpecificationString.t ]) list ]) 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