[][src]Struct rusoto_quicksight::CredentialPair

pub struct CredentialPair {
    pub alternate_data_source_parameters: Option<Vec<DataSourceParameters>>,
    pub password: String,
    pub username: String,
}

The combination of user name and password that are used as credentials.

Fields

alternate_data_source_parameters: Option<Vec<DataSourceParameters>>

A set of alternate data source parameters that you want to share for these credentials. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allowlist. If the structures are an exact match, the request is allowed to use the new data source with the existing credentials. If the AlternateDataSourceParameters list is null, the DataSourceParameters originally used with these Credentials is automatically allowed.

password: String

Password.

username: String

User name.

Trait Implementations

impl Clone for CredentialPair[src]

impl Debug for CredentialPair[src]

impl Default for CredentialPair[src]

impl PartialEq<CredentialPair> for CredentialPair[src]

impl Serialize for CredentialPair[src]

impl StructuralPartialEq for CredentialPair[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.