Struct aws_sdk_athena::model::NotebookMetadata
source · #[non_exhaustive]pub struct NotebookMetadata { /* private fields */ }
Expand description
Contains metadata for notebook, including the notebook name, ID, workgroup, and time created.
Implementations§
source§impl NotebookMetadata
impl NotebookMetadata
sourcepub fn notebook_id(&self) -> Option<&str>
pub fn notebook_id(&self) -> Option<&str>
The notebook ID.
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the Spark enabled workgroup to which the notebook belongs.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time when the notebook was created.
sourcepub fn type(&self) -> Option<&NotebookType>
pub fn type(&self) -> Option<&NotebookType>
The type of notebook. Currently, the only valid type is IPYNB
.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The time when the notebook was last modified.
source§impl NotebookMetadata
impl NotebookMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NotebookMetadata
.
Trait Implementations§
source§impl Clone for NotebookMetadata
impl Clone for NotebookMetadata
source§fn clone(&self) -> NotebookMetadata
fn clone(&self) -> NotebookMetadata
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 NotebookMetadata
impl Debug for NotebookMetadata
source§impl PartialEq<NotebookMetadata> for NotebookMetadata
impl PartialEq<NotebookMetadata> for NotebookMetadata
source§fn eq(&self, other: &NotebookMetadata) -> bool
fn eq(&self, other: &NotebookMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.