Class: Aws::EKSAuth::Types::Subject

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eksauth/lib/aws-sdk-eksauth/types.rb

Overview

An object containing the name of the Kubernetes service account inside the cluster to associate the IAM credentials with.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#namespaceString

The name of the Kubernetes namespace inside the cluster to create the association in. The service account and the pods that use the service account must be in this namespace.

Returns:

  • (String)


288
289
290
291
292
293
# File 'gems/aws-sdk-eksauth/lib/aws-sdk-eksauth/types.rb', line 288

class Subject < Struct.new(
  :namespace,
  :service_account)
  SENSITIVE = []
  include Aws::Structure
end

#service_accountString

The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.

Returns:

  • (String)


288
289
290
291
292
293
# File 'gems/aws-sdk-eksauth/lib/aws-sdk-eksauth/types.rb', line 288

class Subject < Struct.new(
  :namespace,
  :service_account)
  SENSITIVE = []
  include Aws::Structure
end