Struct aws_sdk_redshift::operation::get_cluster_credentials_with_iam::GetClusterCredentialsWithIamOutput
source · #[non_exhaustive]pub struct GetClusterCredentialsWithIamOutput { /* private fields */ }
Implementations§
source§impl GetClusterCredentialsWithIamOutput
impl GetClusterCredentialsWithIamOutput
sourcepub fn db_user(&self) -> Option<&str>
pub fn db_user(&self) -> Option<&str>
A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity.
sourcepub fn db_password(&self) -> Option<&str>
pub fn db_password(&self) -> Option<&str>
A temporary password that you provide when you connect to a database.
sourcepub fn expiration(&self) -> Option<&DateTime>
pub fn expiration(&self) -> Option<&DateTime>
The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.
sourcepub fn next_refresh_time(&self) -> Option<&DateTime>
pub fn next_refresh_time(&self) -> Option<&DateTime>
Reserved for future use.
source§impl GetClusterCredentialsWithIamOutput
impl GetClusterCredentialsWithIamOutput
sourcepub fn builder() -> GetClusterCredentialsWithIamOutputBuilder
pub fn builder() -> GetClusterCredentialsWithIamOutputBuilder
Creates a new builder-style object to manufacture GetClusterCredentialsWithIamOutput
.
Trait Implementations§
source§impl Clone for GetClusterCredentialsWithIamOutput
impl Clone for GetClusterCredentialsWithIamOutput
source§fn clone(&self) -> GetClusterCredentialsWithIamOutput
fn clone(&self) -> GetClusterCredentialsWithIamOutput
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<GetClusterCredentialsWithIamOutput> for GetClusterCredentialsWithIamOutput
impl PartialEq<GetClusterCredentialsWithIamOutput> for GetClusterCredentialsWithIamOutput
source§fn eq(&self, other: &GetClusterCredentialsWithIamOutput) -> bool
fn eq(&self, other: &GetClusterCredentialsWithIamOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetClusterCredentialsWithIamOutput
impl RequestId for GetClusterCredentialsWithIamOutput
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 GetClusterCredentialsWithIamOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetClusterCredentialsWithIamOutput
impl Send for GetClusterCredentialsWithIamOutput
impl Sync for GetClusterCredentialsWithIamOutput
impl Unpin for GetClusterCredentialsWithIamOutput
impl UnwindSafe for GetClusterCredentialsWithIamOutput
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