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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-core/lib/aws-sdk-sts/types.rb

Overview

Amazon Web Services credentials for API authentication.

Constant Summary collapse

SENSITIVE =
[:secret_access_key]

Instance Attribute Summary collapse

Instance Attribute Details

#access_key_idString

The access key ID that identifies the temporary security credentials.

Returns:

  • (String)


954
955
956
957
958
959
960
961
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 954

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

#expirationTime

The date on which the current credentials expire.

Returns:

  • (Time)


954
955
956
957
958
959
960
961
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 954

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

#secret_access_keyString

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

Returns:

  • (String)


954
955
956
957
958
959
960
961
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 954

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

#session_tokenString

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

Returns:

  • (String)


954
955
956
957
958
959
960
961
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 954

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