Struct aws_sdk_sts::types::builders::CredentialsBuilder
source · #[non_exhaustive]pub struct CredentialsBuilder { /* private fields */ }Expand description
A builder for Credentials.
Implementations§
source§impl CredentialsBuilder
impl CredentialsBuilder
sourcepub fn access_key_id(self, input: impl Into<String>) -> Self
pub fn access_key_id(self, input: impl Into<String>) -> Self
The access key ID that identifies the temporary security credentials.
sourcepub fn set_access_key_id(self, input: Option<String>) -> Self
pub fn set_access_key_id(self, input: Option<String>) -> Self
The access key ID that identifies the temporary security credentials.
sourcepub fn get_access_key_id(&self) -> &Option<String>
pub fn get_access_key_id(&self) -> &Option<String>
The access key ID that identifies the temporary security credentials.
sourcepub fn secret_access_key(self, input: impl Into<String>) -> Self
pub fn secret_access_key(self, input: impl Into<String>) -> Self
The secret access key that can be used to sign requests.
sourcepub fn set_secret_access_key(self, input: Option<String>) -> Self
pub fn set_secret_access_key(self, input: Option<String>) -> Self
The secret access key that can be used to sign requests.
sourcepub fn get_secret_access_key(&self) -> &Option<String>
pub fn get_secret_access_key(&self) -> &Option<String>
The secret access key that can be used to sign requests.
sourcepub fn session_token(self, input: impl Into<String>) -> Self
pub fn session_token(self, input: impl Into<String>) -> Self
The token that users must pass to the service API to use the temporary credentials.
sourcepub fn set_session_token(self, input: Option<String>) -> Self
pub fn set_session_token(self, input: Option<String>) -> Self
The token that users must pass to the service API to use the temporary credentials.
sourcepub fn get_session_token(&self) -> &Option<String>
pub fn get_session_token(&self) -> &Option<String>
The token that users must pass to the service API to use the temporary credentials.
sourcepub fn expiration(self, input: DateTime) -> Self
pub fn expiration(self, input: DateTime) -> Self
The date on which the current credentials expire.
sourcepub fn set_expiration(self, input: Option<DateTime>) -> Self
pub fn set_expiration(self, input: Option<DateTime>) -> Self
The date on which the current credentials expire.
sourcepub fn get_expiration(&self) -> &Option<DateTime>
pub fn get_expiration(&self) -> &Option<DateTime>
The date on which the current credentials expire.
sourcepub fn build(self) -> Credentials
pub fn build(self) -> Credentials
Consumes the builder and constructs a Credentials.
Trait Implementations§
source§impl Clone for CredentialsBuilder
impl Clone for CredentialsBuilder
source§fn clone(&self) -> CredentialsBuilder
fn clone(&self) -> CredentialsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CredentialsBuilder
impl Debug for CredentialsBuilder
source§impl Default for CredentialsBuilder
impl Default for CredentialsBuilder
source§fn default() -> CredentialsBuilder
fn default() -> CredentialsBuilder
source§impl PartialEq<CredentialsBuilder> for CredentialsBuilder
impl PartialEq<CredentialsBuilder> for CredentialsBuilder
source§fn eq(&self, other: &CredentialsBuilder) -> bool
fn eq(&self, other: &CredentialsBuilder) -> bool
self and other values to be equal, and is used
by ==.