Struct aws_sdk_sagemaker::operation::create_presigned_domain_url::CreatePresignedDomainUrlInput
source · #[non_exhaustive]pub struct CreatePresignedDomainUrlInput {
pub domain_id: Option<String>,
pub user_profile_name: Option<String>,
pub session_expiration_duration_in_seconds: Option<i32>,
pub expires_in_seconds: Option<i32>,
pub space_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_id: Option<String>
The domain ID.
user_profile_name: Option<String>
The name of the UserProfile to sign-in as.
session_expiration_duration_in_seconds: Option<i32>
The session expiration duration in seconds. This value defaults to 43200.
expires_in_seconds: Option<i32>
The number of seconds until the pre-signed URL expires. This value defaults to 300.
space_name: Option<String>
The name of the space.
Implementations§
source§impl CreatePresignedDomainUrlInput
impl CreatePresignedDomainUrlInput
sourcepub fn user_profile_name(&self) -> Option<&str>
pub fn user_profile_name(&self) -> Option<&str>
The name of the UserProfile to sign-in as.
sourcepub fn session_expiration_duration_in_seconds(&self) -> Option<i32>
pub fn session_expiration_duration_in_seconds(&self) -> Option<i32>
The session expiration duration in seconds. This value defaults to 43200.
sourcepub fn expires_in_seconds(&self) -> Option<i32>
pub fn expires_in_seconds(&self) -> Option<i32>
The number of seconds until the pre-signed URL expires. This value defaults to 300.
sourcepub fn space_name(&self) -> Option<&str>
pub fn space_name(&self) -> Option<&str>
The name of the space.
source§impl CreatePresignedDomainUrlInput
impl CreatePresignedDomainUrlInput
sourcepub fn builder() -> CreatePresignedDomainUrlInputBuilder
pub fn builder() -> CreatePresignedDomainUrlInputBuilder
Creates a new builder-style object to manufacture CreatePresignedDomainUrlInput
.
Trait Implementations§
source§impl Clone for CreatePresignedDomainUrlInput
impl Clone for CreatePresignedDomainUrlInput
source§fn clone(&self) -> CreatePresignedDomainUrlInput
fn clone(&self) -> CreatePresignedDomainUrlInput
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 PartialEq<CreatePresignedDomainUrlInput> for CreatePresignedDomainUrlInput
impl PartialEq<CreatePresignedDomainUrlInput> for CreatePresignedDomainUrlInput
source§fn eq(&self, other: &CreatePresignedDomainUrlInput) -> bool
fn eq(&self, other: &CreatePresignedDomainUrlInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreatePresignedDomainUrlInput
Auto Trait Implementations§
impl RefUnwindSafe for CreatePresignedDomainUrlInput
impl Send for CreatePresignedDomainUrlInput
impl Sync for CreatePresignedDomainUrlInput
impl Unpin for CreatePresignedDomainUrlInput
impl UnwindSafe for CreatePresignedDomainUrlInput
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