logo
pub struct ContainerProvider { /* private fields */ }
Expand description

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

use std::time::Duration;

use rusoto_credential::ContainerProvider;

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

Implementations

Create a new provider with the given handle.

Set the timeout on the provider to the specified duration.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Default: create a new provider with the given handle.

Returns the “default value” for a type. Read more

Produce a new AwsCredentials future.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more