Struct aws_sdk_athena::input::CreateNotebookInput
source · #[non_exhaustive]pub struct CreateNotebookInput { /* private fields */ }
Implementations§
source§impl CreateNotebookInput
impl CreateNotebookInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNotebook, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateNotebook, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateNotebook
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateNotebookInput
.
source§impl CreateNotebookInput
impl CreateNotebookInput
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the Spark enabled workgroup in which the notebook will be created.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the ipynb
file to be created in the Spark workgroup, without the .ipynb
extension.
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 CreateNotebookInput
impl Clone for CreateNotebookInput
source§fn clone(&self) -> CreateNotebookInput
fn clone(&self) -> CreateNotebookInput
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 CreateNotebookInput
impl Debug for CreateNotebookInput
source§impl PartialEq<CreateNotebookInput> for CreateNotebookInput
impl PartialEq<CreateNotebookInput> for CreateNotebookInput
source§fn eq(&self, other: &CreateNotebookInput) -> bool
fn eq(&self, other: &CreateNotebookInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.