[][src]Struct rusoto_codepipeline::AWSSessionCredentials

pub struct AWSSessionCredentials {
    pub access_key_id: String,
    pub secret_access_key: String,
    pub session_token: String,
}

Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

Fields

access_key_id: String

The access key for the session.

secret_access_key: String

The secret access key for the session.

session_token: String

The token for the session.

Trait Implementations

impl Clone for AWSSessionCredentials[src]

impl Debug for AWSSessionCredentials[src]

impl Default for AWSSessionCredentials[src]

impl<'de> Deserialize<'de> for AWSSessionCredentials[src]

impl PartialEq<AWSSessionCredentials> for AWSSessionCredentials[src]

impl StructuralPartialEq for AWSSessionCredentials[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.