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.
Constant Summary collapse
- SENSITIVE =
[:secret_key]
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.
152 153 154 155 156 157 158 159 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 152 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) SENSITIVE = [:secret_key] include Aws::Structure end |
#expiration ⇒ Time
The date at which these credentials will expire.
152 153 154 155 156 157 158 159 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 152 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) SENSITIVE = [:secret_key] include Aws::Structure end |
#secret_key ⇒ String
The Secret Access Key portion of the credentials
152 153 154 155 156 157 158 159 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 152 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) SENSITIVE = [:secret_key] include Aws::Structure end |
#session_token ⇒ String
The Session Token portion of the credentials
152 153 154 155 156 157 158 159 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 152 class Credentials < Struct.new( :access_key_id, :secret_key, :session_token, :expiration) SENSITIVE = [:secret_key] include Aws::Structure end |