#[non_exhaustive]pub struct ImportNotebookInput {
pub work_group: Option<String>,
pub name: Option<String>,
pub payload: Option<String>,
pub type: Option<NotebookType>,
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.work_group: Option<String>The name of the Spark enabled workgroup to import the notebook to.
name: Option<String>The name of the notebook to import.
payload: Option<String>The notebook content to be imported.
type: Option<NotebookType>The notebook content type. Currently, the only valid type is IPYNB.
client_request_token: Option<String>A unique case-sensitive string used to ensure the request to import 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 ImportNotebookInput
impl ImportNotebookInput
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the Spark enabled workgroup to import the notebook to.
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 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 import 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 ImportNotebookInput
impl ImportNotebookInput
sourcepub fn builder() -> ImportNotebookInputBuilder
pub fn builder() -> ImportNotebookInputBuilder
Creates a new builder-style object to manufacture ImportNotebookInput.
Trait Implementations§
source§impl Clone for ImportNotebookInput
impl Clone for ImportNotebookInput
source§fn clone(&self) -> ImportNotebookInput
fn clone(&self) -> ImportNotebookInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ImportNotebookInput
impl Debug for ImportNotebookInput
source§impl PartialEq<ImportNotebookInput> for ImportNotebookInput
impl PartialEq<ImportNotebookInput> for ImportNotebookInput
source§fn eq(&self, other: &ImportNotebookInput) -> bool
fn eq(&self, other: &ImportNotebookInput) -> bool
self and other values to be equal, and is used
by ==.