#[non_exhaustive]pub struct UpdateNotebookInput {
pub notebook_id: Option<String>,
pub payload: Option<String>,
pub type: Option<NotebookType>,
pub session_id: Option<String>,
pub client_request_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.notebook_id: Option<String>The ID of the notebook to update.
payload: Option<String>The updated content for the notebook.
type: Option<NotebookType>The notebook content type. Currently, the only valid type is IPYNB.
session_id: Option<String>The active notebook session ID. Required if the notebook has an active session.
client_request_token: Option<String>A unique case-sensitive string used to ensure the request to create the notebook is idempotent (executes only once).
This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
Implementations§
source§impl UpdateNotebookInput
impl UpdateNotebookInput
sourcepub fn notebook_id(&self) -> Option<&str>
pub fn notebook_id(&self) -> Option<&str>
The ID of the notebook to update.
sourcepub fn type(&self) -> Option<&NotebookType>
pub fn type(&self) -> Option<&NotebookType>
The notebook content type. Currently, the only valid type is IPYNB.
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The active notebook session ID. Required if the notebook has an active session.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique case-sensitive string used to ensure the request to create the notebook is idempotent (executes only once).
This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
source§impl UpdateNotebookInput
impl UpdateNotebookInput
sourcepub fn builder() -> UpdateNotebookInputBuilder
pub fn builder() -> UpdateNotebookInputBuilder
Creates a new builder-style object to manufacture UpdateNotebookInput.
Trait Implementations§
source§impl Clone for UpdateNotebookInput
impl Clone for UpdateNotebookInput
source§fn clone(&self) -> UpdateNotebookInput
fn clone(&self) -> UpdateNotebookInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateNotebookInput
impl Debug for UpdateNotebookInput
source§impl PartialEq for UpdateNotebookInput
impl PartialEq for UpdateNotebookInput
source§fn eq(&self, other: &UpdateNotebookInput) -> bool
fn eq(&self, other: &UpdateNotebookInput) -> bool
self and other values to be equal, and is used
by ==.