Class: Aws::STS::Types::Credentials

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sts/types.rb

Overview

AWS credentials for API authentication.

Instance Attribute Summary collapse

Method Summary

Methods included from Aws::Structure

#empty?, included, #initialize, #key?, new, #to_h, #to_s

Instance Attribute Details

#access_key_idString

The access key ID that identifies the temporary security credentials.

Returns:

  • (String)


640
641
642
643
644
645
646
# File 'lib/aws-sdk-sts/types.rb', line 640

class Credentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token,
  :expiration)
  include Aws::Structure
end

#expirationTime

The date on which the current credentials expire.

Returns:

  • (Time)


640
641
642
643
644
645
646
# File 'lib/aws-sdk-sts/types.rb', line 640

class Credentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token,
  :expiration)
  include Aws::Structure
end

#secret_access_keyString

The secret access key that can be used to sign requests.

Returns:

  • (String)


640
641
642
643
644
645
646
# File 'lib/aws-sdk-sts/types.rb', line 640

class Credentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token,
  :expiration)
  include Aws::Structure
end

#session_tokenString

The token that users must pass to the service API to use the temporary credentials.

Returns:

  • (String)


640
641
642
643
644
645
646
# File 'lib/aws-sdk-sts/types.rb', line 640

class Credentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token,
  :expiration)
  include Aws::Structure
end