Class: Aws::EKS::Types::AddonPodIdentityAssociations
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::AddonPodIdentityAssociations
- 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
-
#role_arn ⇒ String
The ARN of an IAM Role.
-
#service_account ⇒ String
The name of a Kubernetes Service Account.
Instance Attribute Details
#role_arn ⇒ String
The ARN of an IAM Role.
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_account ⇒ String
The name of a Kubernetes Service Account.
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 |