Class: Aws::EKSAuth::Types::Credentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eksauth/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

Instance Attribute Details

#access_key_idString

The access key ID that identifies the temporary security credentials.

Returns:

  • (String)


148
149
150
151
152
153
154
155
# File 'gems/aws-sdk-eksauth/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

#expirationTime

The Unix epoch timestamp in seconds when the current credentials expire.

Returns:

  • (Time)


148
149
150
151
152
153
154
155
# File 'gems/aws-sdk-eksauth/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_keyString

The secret access key that applications inside the pods use to sign requests.

Returns:

  • (String)


148
149
150
151
152
153
154
155
# File 'gems/aws-sdk-eksauth/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_tokenString

The token that applications inside the pods must pass to any service API to use the temporary credentials.

Returns:

  • (String)


148
149
150
151
152
153
154
155
# File 'gems/aws-sdk-eksauth/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