Class: Aws::STS::Types::GetSessionTokenResponse

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

Overview

Contains the response to a successful GetSessionToken request, including temporary AWS credentials that can be used to make AWS requests.

Instance Attribute Summary collapse

Method Summary

Methods included from Aws::Structure

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

Instance Attribute Details

#credentialsTypes::Credentials

The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.

Note: The size of the security token that STS APIs return is not fixed. We strongly recommend that you make no assumptions about the maximum size. As of this writing, the typical size is less than 4096 bytes, but that can vary. Also, future updates to AWS might require larger sizes.

Returns:



938
939
940
941
# File 'lib/aws-sdk-sts/types.rb', line 938

class GetSessionTokenResponse < Struct.new(
  :credentials)
  include Aws::Structure
end