#[non_exhaustive]pub struct UpdateNotebookMetadataInput {
pub notebook_id: Option<String>,
pub client_request_token: Option<String>,
pub name: 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 the metadata for.
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.
name: Option<String>The name to update the notebook to.
Implementations§
source§impl UpdateNotebookMetadataInput
impl UpdateNotebookMetadataInput
sourcepub fn notebook_id(&self) -> Option<&str>
pub fn notebook_id(&self) -> Option<&str>
The ID of the notebook to update the metadata for.
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 UpdateNotebookMetadataInput
impl UpdateNotebookMetadataInput
sourcepub fn builder() -> UpdateNotebookMetadataInputBuilder
pub fn builder() -> UpdateNotebookMetadataInputBuilder
Creates a new builder-style object to manufacture UpdateNotebookMetadataInput.
Trait Implementations§
source§impl Clone for UpdateNotebookMetadataInput
impl Clone for UpdateNotebookMetadataInput
source§fn clone(&self) -> UpdateNotebookMetadataInput
fn clone(&self) -> UpdateNotebookMetadataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateNotebookMetadataInput
impl Debug for UpdateNotebookMetadataInput
source§impl PartialEq for UpdateNotebookMetadataInput
impl PartialEq for UpdateNotebookMetadataInput
source§fn eq(&self, other: &UpdateNotebookMetadataInput) -> bool
fn eq(&self, other: &UpdateNotebookMetadataInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateNotebookMetadataInput
Auto Trait Implementations§
impl Freeze for UpdateNotebookMetadataInput
impl RefUnwindSafe for UpdateNotebookMetadataInput
impl Send for UpdateNotebookMetadataInput
impl Sync for UpdateNotebookMetadataInput
impl Unpin for UpdateNotebookMetadataInput
impl UnwindSafe for UpdateNotebookMetadataInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more