[−][src]Struct rusoto_credential::ContainerProvider
Provides AWS credentials from a task'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.
As described in Amazon's
ECS developers guide,
Containers started as part of Tasks using IAM Roles for Tasks will be provided with a relative
URL stored in the environment variable AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
, which will
be used to obtain the AWS credentials. If that environment variable is not set, rusoto will use
the URL set in environment variable AWS_CONTAINER_CREDENTIALS_FULL_URI
to obtain AWS
credentials and will (optionally) also set the Authorization
header to the value of
environment variable AWS_CONTAINER_AUTHORIZATION_TOKEN
.
Example
extern crate rusoto_credential; use std::time::Duration; use rusoto_credential::ContainerProvider; fn main() { let mut provider = ContainerProvider::new(); // you can overwrite the default timeout like this: provider.set_timeout(Duration::from_secs(60)); // ... }
Methods
impl ContainerProvider
[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 ContainerProvider
[src]
type Future = ContainerProviderFuture
The future response value.
fn credentials(&self) -> Self::Future
[src]
impl Default for ContainerProvider
[src]
Default: create a new provider with the given handle.
impl Clone for ContainerProvider
[src]
fn clone(&self) -> ContainerProvider
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ContainerProvider
[src]
Auto Trait Implementations
impl Send for ContainerProvider
impl Sync for ContainerProvider
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,