Struct rusoto_credential::ProfileProvider
source · [−]pub struct ProfileProvider { /* private fields */ }
Expand description
Provides AWS credentials from a profile in a credentials file, or from a credential process.
Warning
This provider allows the credential_process
option, a method of
sourcing credentials from an external process. This can potentially be dangerous, so proceed
with caution. Other credential providers should be preferred if at all possible. If using this
option, you should make sure that the config file is as locked down as possible using security
best practices for your operating system.
Implementations
sourceimpl ProfileProvider
impl ProfileProvider
sourcepub fn new() -> Result<ProfileProvider, CredentialsError>
pub fn new() -> Result<ProfileProvider, CredentialsError>
Create a new ProfileProvider
for the default credentials file path and profile name.
sourcepub fn with_configuration<F, P>(file_path: F, profile: P) -> ProfileProvider where
F: Into<PathBuf>,
P: Into<String>,
pub fn with_configuration<F, P>(file_path: F, profile: P) -> ProfileProvider where
F: Into<PathBuf>,
P: Into<String>,
Create a new ProfileProvider
for the credentials file at the given path, using
the given profile.
sourcepub fn with_default_configuration<F>(file_path: F) -> ProfileProvider where
F: Into<PathBuf>,
pub fn with_default_configuration<F>(file_path: F) -> ProfileProvider where
F: Into<PathBuf>,
Create a new ProfileProvider
for the credentials file at the given path, using
the profile name from environment variable AWS_PROFILE
or fall-back to "default"
if AWS_PROFILE
is not set.
sourcepub fn with_default_credentials<P>(
profile: P
) -> Result<ProfileProvider, CredentialsError> where
P: Into<String>,
pub fn with_default_credentials<P>(
profile: P
) -> Result<ProfileProvider, CredentialsError> where
P: Into<String>,
Create a new ProfileProvider
for the default credentials file path using
the given profile.
sourcepub fn region() -> Result<Option<String>, CredentialsError>
pub fn region() -> Result<Option<String>, CredentialsError>
Attempts to resolve a region value associated with the current default profile from
~/.aws/config
or the file associated with the AWS_CONFIG_FILE
environment variable.
As these fields do not require a region field to be defined, an Option
type is returned
For a the ful region resolution chain, use the Default
impl for rusoto_core::Region
sourcepub fn region_from_profile(&self) -> Result<Option<String>, CredentialsError>
pub fn region_from_profile(&self) -> Result<Option<String>, CredentialsError>
Attempts to resolve the region value associated with the current ProfileProvider
s
config file path (ProfileProvider.file_path
) and profile (ProfileProvider.profile
).
As these fields do not require a region field to be defined, an Option
type is returned
sourcepub fn set_file_path<F>(&mut self, file_path: F) where
F: Into<PathBuf>,
pub fn set_file_path<F>(&mut self, file_path: F) where
F: Into<PathBuf>,
Set the credentials file path.
sourcepub fn set_profile<P>(&mut self, profile: P) where
P: Into<String>,
pub fn set_profile<P>(&mut self, profile: P) where
P: Into<String>,
Set the profile name.
Trait Implementations
sourceimpl Clone for ProfileProvider
impl Clone for ProfileProvider
sourcefn clone(&self) -> ProfileProvider
fn clone(&self) -> ProfileProvider
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ProfileProvider
impl Debug for ProfileProvider
sourceimpl ProvideAwsCredentials for ProfileProvider
impl ProvideAwsCredentials for ProfileProvider
sourcefn credentials<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<AwsCredentials, CredentialsError>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn credentials<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<AwsCredentials, CredentialsError>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Produce a new AwsCredentials
future.
Auto Trait Implementations
impl RefUnwindSafe for ProfileProvider
impl Send for ProfileProvider
impl Sync for ProfileProvider
impl Unpin for ProfileProvider
impl UnwindSafe for ProfileProvider
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more