[][src]Struct rusoto_credential::StaticProvider

pub struct StaticProvider { /* fields omitted */ }

Provides AWS credentials from statically/programmatically provided strings.

Implementations

impl StaticProvider[src]

pub fn new(
    access_key: String,
    secret_access_key: String,
    token: Option<String>,
    valid_for: Option<i64>
) -> StaticProvider
[src]

Creates a new Static Provider. This should be used when you want to statically, or programmatically provide access to AWS.

valid_for is the number of seconds for which issued tokens are valid.

pub fn new_minimal(
    access_key: String,
    secret_access_key: String
) -> StaticProvider
[src]

Creates a new minimal Static Provider. This will set the token as optional none.

pub fn get_aws_access_key_id(&self) -> &str[src]

Gets the AWS Access Key ID for this Static Provider.

pub fn get_aws_secret_access_key(&self) -> &str[src]

Gets the AWS Secret Access Key for this Static Provider.

pub fn has_token(&self) -> bool[src]

Determines if this Static Provider was given a Token.

pub fn get_token(&self) -> &Option<String>[src]

Gets The Token this Static Provider was given.

pub fn is_valid_for(&self) -> &Option<i64>[src]

Returns the length in seconds this Static Provider will be valid for.

Trait Implementations

impl Clone for StaticProvider[src]

impl Debug for StaticProvider[src]

impl From<AwsCredentials> for StaticProvider[src]

impl ProvideAwsCredentials for StaticProvider[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.