Module Values.GetNotebookOutputSource

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

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

    The identifier of the notebook.

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

    The name of the notebook.

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

    The identifier of the project that owns the notebook.

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

    The identifier of the Amazon SageMaker Unified Studio domain.

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

    The ordered list of cells in the notebook.

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

    The status of the notebook.

    *)
  7. description : Description.t option;
    (*

    The description of the notebook.

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

    The timestamp of when the notebook was created.

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

    The identifier of the user who created the notebook.

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

    The timestamp of when the notebook was last updated.

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

    The identifier of the user who last updated the notebook.

    *)
  12. lockedBy : String_.t option;
    (*

    The identifier of the user who locked the notebook.

    *)
  13. lockedAt : Timestamp.t option;
    (*

    The timestamp of when the notebook was locked.

    *)
  14. lockExpiresAt : Timestamp.t option;
    (*

    The timestamp of when the notebook lock expires.

    *)
  15. computeId : ComputeId.t option;
    (*

    The identifier of the compute associated with the notebook.

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

    The metadata of the notebook.

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

    The sensitive parameters of the notebook.

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

    The environment configuration of the notebook.

    *)
  19. error : NotebookError.t option;
    (*

    The error details if the notebook is in a failed state.

    *)
}
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:??? -> ?name:??? -> ?owningProjectId:??? -> ?domainId:??? -> ?cellOrder:??? -> ?status:??? -> ?description:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?lockedBy:??? -> ?lockedAt:??? -> ?lockExpiresAt:??? -> ?computeId:??? -> ?metadata:??? -> ?parameters:??? -> ?environmentConfiguration:??? -> ?error:??? -> 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 NotebookId.t | `Structure of (string * [> `String of String_.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