aws-sdk-datazone 1.137.0

AWS SDK for Amazon DataZone
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartNotebookExport`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon SageMaker Unified Studio domain in which to export the notebook.</p><br>
    ///   - [`notebook_identifier(impl Into<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::notebook_identifier) / [`set_notebook_identifier(Option<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::set_notebook_identifier):<br>required: **true**<br><p>The identifier of the notebook to export.</p><br>
    ///   - [`owning_project_identifier(impl Into<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::owning_project_identifier) / [`set_owning_project_identifier(Option<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::set_owning_project_identifier):<br>required: **true**<br><p>The identifier of the project that owns the notebook.</p><br>
    ///   - [`file_format(FileFormat)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::file_format) / [`set_file_format(Option<FileFormat>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::set_file_format):<br>required: **true**<br><p>The file format for the notebook export. Valid values are <code>PDF</code> and <code>IPYNB</code>.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p><br>
    /// - On success, responds with [`StartNotebookExportOutput`](crate::operation::start_notebook_export::StartNotebookExportOutput) with field(s):
    ///   - [`id(String)`](crate::operation::start_notebook_export::StartNotebookExportOutput::id): <p>The identifier of the notebook export.</p>
    ///   - [`domain_id(String)`](crate::operation::start_notebook_export::StartNotebookExportOutput::domain_id): <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
    ///   - [`owning_project_id(String)`](crate::operation::start_notebook_export::StartNotebookExportOutput::owning_project_id): <p>The identifier of the project that owns the notebook.</p>
    ///   - [`notebook_id(String)`](crate::operation::start_notebook_export::StartNotebookExportOutput::notebook_id): <p>The identifier of the notebook.</p>
    ///   - [`file_format(FileFormat)`](crate::operation::start_notebook_export::StartNotebookExportOutput::file_format): <p>The file format of the notebook export.</p>
    ///   - [`status(NotebookExportStatus)`](crate::operation::start_notebook_export::StartNotebookExportOutput::status): <p>The status of the notebook export.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::start_notebook_export::StartNotebookExportOutput::created_at): <p>The timestamp of when the notebook export was started.</p>
    ///   - [`created_by(Option<String>)`](crate::operation::start_notebook_export::StartNotebookExportOutput::created_by): <p>The identifier of the user who started the notebook export.</p>
    /// - On failure, responds with [`SdkError<StartNotebookExportError>`](crate::operation::start_notebook_export::StartNotebookExportError)
    pub fn start_notebook_export(&self) -> crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder {
        crate::operation::start_notebook_export::builders::StartNotebookExportFluentBuilder::new(self.handle.clone())
    }
}