Class: Aws::CognitoIdentity::Types::Credentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::Credentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Credentials for the provided identity ID.
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The Access Key portion of the credentials.
-
#expiration ⇒ Time
The date at which these credentials will expire.
-
#secret_key ⇒ String
The Secret Access Key portion of the credentials.
-
#session_token ⇒ String
The Session Token portion of the credentials.
Instance Attribute Details
#access_key_id ⇒ String
The Access Key portion of the credentials.
138 139 140 141 142 143 144 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 138 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) include Aws::Structure end |
#expiration ⇒ Time
The date at which these credentials will expire.
138 139 140 141 142 143 144 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 138 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) include Aws::Structure end |
#secret_key ⇒ String
The Secret Access Key portion of the credentials
138 139 140 141 142 143 144 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 138 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) include Aws::Structure end |
#session_token ⇒ String
The Session Token portion of the credentials
138 139 140 141 142 143 144 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 138 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) include Aws::Structure end |