Module Values.GetNotebookExportOutputSource

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

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

    The identifier of the notebook export.

    *)
  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.

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

    The identifier of the notebook.

    *)
  5. fileFormat : FileFormat.t option;
    (*

    The file format of the notebook export.

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

    The status of the notebook export.

    *)
  7. outputLocation : OutputLocation.t option;
    (*

    The output location of the exported notebook in Amazon Simple Storage Service.

    *)
  8. error : NotebookExportError.t option;
    (*

    The error details if the notebook export failed.

    *)
  9. completedAt : CompletedAt.t option;
    (*

    The timestamp of when the notebook export completed.

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

    The timestamp of when the notebook export was started.

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

    The identifier of the user who started the notebook export.

    *)
}
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:??? -> ?fileFormat:??? -> ?status:??? -> ?outputLocation:??? -> ?error:??? -> ?completedAt:??? -> ?createdAt:??? -> ?createdBy:??? -> 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 | `String of ExportId.t | `Structure of (string * [> `String of NotebookExportErrorMessageString.t | `Structure of (string * [> `String of NotebookS3Uri.t ]) list ]) list | `Timestamp of CompletedAt.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