Class: Aws::STS::Types::GetSessionTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::STS::Types::GetSessionTokenResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sts/types.rb
Overview
Contains the response to a successful GetSessionToken request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#credentials ⇒ Types::Credentials
The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.
Method Summary
Methods included from Aws::Structure
#empty?, included, #initialize, #key?, new, #to_h, #to_s
Instance Attribute Details
#credentials ⇒ Types::Credentials
The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.
<note markdown=“1”> The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size.
</note>
1363 1364 1365 1366 1367 |
# File 'lib/aws-sdk-sts/types.rb', line 1363 class GetSessionTokenResponse < Struct.new( :credentials) SENSITIVE = [] include Aws::Structure end |