[][src]Struct rusoto_redshift::ClusterCredentials

pub struct ClusterCredentials {
    pub db_password: Option<String>,
    pub db_user: Option<String>,
    pub expiration: Option<String>,
}

Temporary credentials with authorization to log on to an Amazon Redshift database.

Fields

db_password: Option<String>

A temporary password that authorizes the user name returned by DbUser to log on to the database DbName.

db_user: Option<String>

A database user name that is authorized to log on to the database DbName using the password DbPassword. If the specified DbUser exists in the database, the new user name has the same database privileges as the the user named in DbUser. By default, the user is added to PUBLIC. If the DbGroups parameter is specifed, DbUser is added to the listed groups for any sessions created using these credentials.

expiration: Option<String>

The date and time the password in DbPassword expires.

Trait Implementations

impl Clone for ClusterCredentials[src]

impl Debug for ClusterCredentials[src]

impl Default for ClusterCredentials[src]

impl PartialEq<ClusterCredentials> for ClusterCredentials[src]

impl StructuralPartialEq for ClusterCredentials[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.