[][src]Struct rusoto_credential::InstanceMetadataProvider

pub struct InstanceMetadataProvider { /* fields omitted */ }

Provides AWS credentials from a resource's IAM role.

The provider has a default timeout of 30 seconds. While it should work well for most setups, you can change the timeout using the set_timeout method.

Example

extern crate rusoto_credential;

use std::time::Duration;

use rusoto_credential::InstanceMetadataProvider;

fn main() {
  let mut provider = InstanceMetadataProvider::new();
  // you can overwrite the default timeout like this:
  provider.set_timeout(Duration::from_secs(60));

  // ...
}

Methods

impl InstanceMetadataProvider[src]

pub fn new() -> Self[src]

Create a new provider with the given handle.

pub fn set_timeout(&mut self, timeout: Duration)[src]

Set the timeout on the provider to the specified duration.

Trait Implementations

impl ProvideAwsCredentials for InstanceMetadataProvider[src]

type Future = InstanceMetadataProviderFuture

The future response value.

impl Default for InstanceMetadataProvider[src]

impl Clone for InstanceMetadataProvider[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InstanceMetadataProvider[src]

Auto Trait Implementations

impl Send for InstanceMetadataProvider

impl Sync for InstanceMetadataProvider

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T