Struct aws_sdk_codepipeline::model::AwsSessionCredentials
source · #[non_exhaustive]pub struct AwsSessionCredentials { /* private fields */ }
Expand description
Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in AWS CodePipeline.
Implementations§
source§impl AwsSessionCredentials
impl AwsSessionCredentials
sourcepub fn access_key_id(&self) -> Option<&str>
pub fn access_key_id(&self) -> Option<&str>
The access key for the session.
sourcepub fn secret_access_key(&self) -> Option<&str>
pub fn secret_access_key(&self) -> Option<&str>
The secret access key for the session.
sourcepub fn session_token(&self) -> Option<&str>
pub fn session_token(&self) -> Option<&str>
The token for the session.
source§impl AwsSessionCredentials
impl AwsSessionCredentials
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsSessionCredentials
.
Trait Implementations§
source§impl Clone for AwsSessionCredentials
impl Clone for AwsSessionCredentials
source§fn clone(&self) -> AwsSessionCredentials
fn clone(&self) -> AwsSessionCredentials
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more