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

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

Overview

A type of Pod Identity Association owned by an Amazon EKS Add-on.

Each EKS Pod Identity 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 Pod Identity in the EKS User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#role_arnString

The ARN of an IAM Role.

Returns:

  • (String)


391
392
393
394
395
396
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 391

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

#service_accountString

The name of a Kubernetes Service Account.

Returns:

  • (String)


391
392
393
394
395
396
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 391

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