Struct aws_sdk_athena::input::UpdateNotebookInput
source · #[non_exhaustive]pub struct UpdateNotebookInput { /* private fields */ }
Implementations§
source§impl UpdateNotebookInput
impl UpdateNotebookInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateNotebook, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateNotebook, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateNotebook
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateNotebookInput
.
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 ID of the session in which the notebook will be updated.
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.
Trait Implementations§
source§impl Clone for UpdateNotebookInput
impl Clone for UpdateNotebookInput
source§fn clone(&self) -> UpdateNotebookInput
fn clone(&self) -> UpdateNotebookInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateNotebookInput
impl Debug for UpdateNotebookInput
source§impl PartialEq<UpdateNotebookInput> for UpdateNotebookInput
impl PartialEq<UpdateNotebookInput> for UpdateNotebookInput
source§fn eq(&self, other: &UpdateNotebookInput) -> bool
fn eq(&self, other: &UpdateNotebookInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.