Struct aws_sdk_s3control::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 unique access key ID of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn set_access_key_id(self, input: Option<String>) -> Self
pub fn set_access_key_id(self, input: Option<String>) -> Self
The unique access key ID of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn get_access_key_id(&self) -> &Option<String>
pub fn get_access_key_id(&self) -> &Option<String>
The unique access key ID of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
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 of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
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 of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn get_secret_access_key(&self) -> &Option<String>
pub fn get_secret_access_key(&self) -> &Option<String>
The secret access key of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn session_token(self, input: impl Into<String>) -> Self
pub fn session_token(self, input: impl Into<String>) -> Self
The Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn set_session_token(self, input: Option<String>) -> Self
pub fn set_session_token(self, input: Option<String>) -> Self
The Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn get_session_token(&self) -> &Option<String>
pub fn get_session_token(&self) -> &Option<String>
The Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn expiration(self, input: DateTime) -> Self
pub fn expiration(self, input: DateTime) -> Self
The expiration date and time of the temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn set_expiration(self, input: Option<DateTime>) -> Self
pub fn set_expiration(self, input: Option<DateTime>) -> Self
The expiration date and time of the temporary credential that S3 Access Grants vends to grantees and client applications.
sourcepub fn get_expiration(&self) -> &Option<DateTime>
pub fn get_expiration(&self) -> &Option<DateTime>
The expiration date and time of the temporary credential that S3 Access Grants vends to grantees and client applications.
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 for CredentialsBuilder
impl PartialEq 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 ==
.