Class: Aws::CodePipeline::Types::AWSSessionCredentials

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#access_key_idString

The access key for the session.

Returns:

  • (String)


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_keyString

The secret access key for the session.

Returns:

  • (String)


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_tokenString

The token for the session.

Returns:

  • (String)


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