Struct aws_sdk_codepipeline::model::AwsSessionCredentials
source · [−]#[non_exhaustive]pub struct AwsSessionCredentials {
pub access_key_id: Option<String>,
pub secret_access_key: Option<String>,
pub session_token: Option<String>,
}
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.access_key_id: Option<String>
The access key for the session.
secret_access_key: Option<String>
The secret access key for the session.
session_token: Option<String>
The token for the session.
Implementations
The access key for the session.
The secret access key for the session.
The token for the session.
Creates a new builder-style object to manufacture AwsSessionCredentials
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more