Struct aws_sdk_emrcontainers::operation::get_managed_endpoint_session_credentials::GetManagedEndpointSessionCredentialsOutput
source · #[non_exhaustive]pub struct GetManagedEndpointSessionCredentialsOutput {
pub id: Option<String>,
pub credentials: Option<Credentials>,
pub expires_at: Option<DateTime>,
/* private fields */
}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.id: Option<String>The identifier of the session token returned.
credentials: Option<Credentials>The structure containing the session credentials.
expires_at: Option<DateTime>The date and time when the session token will expire.
Implementations§
source§impl GetManagedEndpointSessionCredentialsOutput
impl GetManagedEndpointSessionCredentialsOutput
sourcepub fn credentials(&self) -> Option<&Credentials>
pub fn credentials(&self) -> Option<&Credentials>
The structure containing the session credentials.
sourcepub fn expires_at(&self) -> Option<&DateTime>
pub fn expires_at(&self) -> Option<&DateTime>
The date and time when the session token will expire.
source§impl GetManagedEndpointSessionCredentialsOutput
impl GetManagedEndpointSessionCredentialsOutput
sourcepub fn builder() -> GetManagedEndpointSessionCredentialsOutputBuilder
pub fn builder() -> GetManagedEndpointSessionCredentialsOutputBuilder
Creates a new builder-style object to manufacture GetManagedEndpointSessionCredentialsOutput.
Trait Implementations§
source§impl Clone for GetManagedEndpointSessionCredentialsOutput
impl Clone for GetManagedEndpointSessionCredentialsOutput
source§fn clone(&self) -> GetManagedEndpointSessionCredentialsOutput
fn clone(&self) -> GetManagedEndpointSessionCredentialsOutput
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<GetManagedEndpointSessionCredentialsOutput> for GetManagedEndpointSessionCredentialsOutput
impl PartialEq<GetManagedEndpointSessionCredentialsOutput> for GetManagedEndpointSessionCredentialsOutput
source§fn eq(&self, other: &GetManagedEndpointSessionCredentialsOutput) -> bool
fn eq(&self, other: &GetManagedEndpointSessionCredentialsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetManagedEndpointSessionCredentialsOutput
impl RequestId for GetManagedEndpointSessionCredentialsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetManagedEndpointSessionCredentialsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetManagedEndpointSessionCredentialsOutput
impl Send for GetManagedEndpointSessionCredentialsOutput
impl Sync for GetManagedEndpointSessionCredentialsOutput
impl Unpin for GetManagedEndpointSessionCredentialsOutput
impl UnwindSafe for GetManagedEndpointSessionCredentialsOutput
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