Class: Aws::EKSAuth::Types::Credentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKSAuth::Types::Credentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eksauth/types.rb
Overview
The *Amazon Web Services Signature Version 4* type of temporary credentials.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The access key ID that identifies the temporary security credentials.
-
#expiration ⇒ Time
The Unix epoch timestamp in seconds when the current credentials expire.
-
#secret_access_key ⇒ String
The secret access key that applications inside the pods use to sign requests.
-
#session_token ⇒ String
The token that applications inside the pods must pass to any service API to use the temporary credentials.
Instance Attribute Details
#access_key_id ⇒ String
The access key ID that identifies the temporary security credentials.
148 149 150 151 152 153 154 155 |
# File 'lib/aws-sdk-eksauth/types.rb', line 148 class Credentials < Struct.new( :session_token, :secret_access_key, :access_key_id, :expiration) SENSITIVE = [] include Aws::Structure end |
#expiration ⇒ Time
The Unix epoch timestamp in seconds when the current credentials expire.
148 149 150 151 152 153 154 155 |
# File 'lib/aws-sdk-eksauth/types.rb', line 148 class Credentials < Struct.new( :session_token, :secret_access_key, :access_key_id, :expiration) SENSITIVE = [] include Aws::Structure end |
#secret_access_key ⇒ String
The secret access key that applications inside the pods use to sign requests.
148 149 150 151 152 153 154 155 |
# File 'lib/aws-sdk-eksauth/types.rb', line 148 class Credentials < Struct.new( :session_token, :secret_access_key, :access_key_id, :expiration) SENSITIVE = [] include Aws::Structure end |
#session_token ⇒ String
The token that applications inside the pods must pass to any service API to use the temporary credentials.
148 149 150 151 152 153 154 155 |
# File 'lib/aws-sdk-eksauth/types.rb', line 148 class Credentials < Struct.new( :session_token, :secret_access_key, :access_key_id, :expiration) SENSITIVE = [] include Aws::Structure end |