Class: Aws::CodePipeline::Types::AWSSessionCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::AWSSessionCredentials
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services 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 CodePipeline.
Constant Summary collapse
- SENSITIVE =
[:access_key_id, :secret_access_key, :session_token]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The access key for the session.
-
#secret_access_key ⇒ String
The secret access key for the session.
-
#session_token ⇒ String
The token for the session.
Instance Attribute Details
#access_key_id ⇒ String
The access key for the session.
33 34 35 36 37 38 39 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 33 class AWSSessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |
#secret_access_key ⇒ String
The secret access key for the session.
33 34 35 36 37 38 39 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 33 class AWSSessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |
#session_token ⇒ String
The token for the session.
33 34 35 36 37 38 39 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 33 class AWSSessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |