pub struct CreatePresignedNotebookInstanceUrlInput {
pub notebook_instance_name: String,
pub session_expiration_duration_in_seconds: Option<i64>,
}
Fields§
§notebook_instance_name: String
The name of the notebook instance.
session_expiration_duration_in_seconds: Option<i64>
The duration of the session, in seconds. The default is 12 hours.
Trait Implementations§
Source§impl Clone for CreatePresignedNotebookInstanceUrlInput
impl Clone for CreatePresignedNotebookInstanceUrlInput
Source§fn clone(&self) -> CreatePresignedNotebookInstanceUrlInput
fn clone(&self) -> CreatePresignedNotebookInstanceUrlInput
Returns a duplicate 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 Default for CreatePresignedNotebookInstanceUrlInput
impl Default for CreatePresignedNotebookInstanceUrlInput
Source§fn default() -> CreatePresignedNotebookInstanceUrlInput
fn default() -> CreatePresignedNotebookInstanceUrlInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreatePresignedNotebookInstanceUrlInput
impl PartialEq for CreatePresignedNotebookInstanceUrlInput
Source§fn eq(&self, other: &CreatePresignedNotebookInstanceUrlInput) -> bool
fn eq(&self, other: &CreatePresignedNotebookInstanceUrlInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreatePresignedNotebookInstanceUrlInput
Auto Trait Implementations§
impl Freeze for CreatePresignedNotebookInstanceUrlInput
impl RefUnwindSafe for CreatePresignedNotebookInstanceUrlInput
impl Send for CreatePresignedNotebookInstanceUrlInput
impl Sync for CreatePresignedNotebookInstanceUrlInput
impl Unpin for CreatePresignedNotebookInstanceUrlInput
impl UnwindSafe for CreatePresignedNotebookInstanceUrlInput
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
Mutably borrows from an owned value. Read more