Class: Aws::EKS::Types::AddonPodIdentityAssociations

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eks/types.rb

Overview

A type of EKS Pod Identity association owned by an Amazon EKS add-on.

Each association maps a role to a service account in a namespace in the cluster.

For more information, see [Attach an IAM Role to an Amazon EKS add-on using EKS Pod Identity] in the *Amazon EKS User Guide*.

[1]: docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#role_arnString

The ARN of an IAM Role.

Returns:

  • (String)


456
457
458
459
460
461
# File 'lib/aws-sdk-eks/types.rb', line 456

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

#service_accountString

The name of a Kubernetes Service Account.

Returns:

  • (String)


456
457
458
459
460
461
# File 'lib/aws-sdk-eks/types.rb', line 456

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