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
sourceimpl 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.
sourceimpl AwsSessionCredentials
impl AwsSessionCredentials
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsSessionCredentials
.
Trait Implementations
sourceimpl Clone for AwsSessionCredentials
impl Clone for AwsSessionCredentials
sourcefn clone(&self) -> AwsSessionCredentials
fn clone(&self) -> AwsSessionCredentials
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 moresourceimpl Debug for AwsSessionCredentials
impl Debug for AwsSessionCredentials
sourceimpl PartialEq<AwsSessionCredentials> for AwsSessionCredentials
impl PartialEq<AwsSessionCredentials> for AwsSessionCredentials
sourcefn eq(&self, other: &AwsSessionCredentials) -> bool
fn eq(&self, other: &AwsSessionCredentials) -> bool
impl StructuralPartialEq for AwsSessionCredentials
Auto Trait Implementations
impl RefUnwindSafe for AwsSessionCredentials
impl Send for AwsSessionCredentials
impl Sync for AwsSessionCredentials
impl Unpin for AwsSessionCredentials
impl UnwindSafe for AwsSessionCredentials
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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