Class: Aws::EKSAuth::Types::AssumeRoleForPodIdentityResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKSAuth::Types::AssumeRoleForPodIdentityResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eksauth/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:credentials]
Instance Attribute Summary collapse
-
#assumed_role_user ⇒ Types::AssumedRoleUser
An object with the permanent IAM role identity and the temporary session name.
-
#audience ⇒ String
The identity that is allowed to use the credentials.
-
#credentials ⇒ Types::Credentials
The *Amazon Web Services Signature Version 4* type of temporary credentials.
-
#pod_identity_association ⇒ Types::PodIdentityAssociation
The Amazon Resource Name (ARN) and ID of the EKS Pod Identity association.
-
#subject ⇒ Types::Subject
The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.
Instance Attribute Details
#assumed_role_user ⇒ Types::AssumedRoleUser
An object with the permanent IAM role identity and the temporary session name.
The ARN of the IAM role that the temporary credentials authenticate to.
The session name of the temporary session requested to STS. The value is a unique identifier that contains the role ID, a colon (‘:`), and the role session name of the role that is being assumed. The role ID is generated by IAM when the role is created. The role session name part of the value follows this format: `eks-clustername-podname-random UUID `
87 88 89 90 91 92 93 94 95 |
# File 'lib/aws-sdk-eksauth/types.rb', line 87 class AssumeRoleForPodIdentityResponse < Struct.new( :subject, :audience, :pod_identity_association, :assumed_role_user, :credentials) SENSITIVE = [:credentials] include Aws::Structure end |
#audience ⇒ String
The identity that is allowed to use the credentials. This value is always ‘pods.eks.amazonaws.com`.
87 88 89 90 91 92 93 94 95 |
# File 'lib/aws-sdk-eksauth/types.rb', line 87 class AssumeRoleForPodIdentityResponse < Struct.new( :subject, :audience, :pod_identity_association, :assumed_role_user, :credentials) SENSITIVE = [:credentials] include Aws::Structure end |
#credentials ⇒ Types::Credentials
The *Amazon Web Services Signature Version 4* type of temporary credentials.
87 88 89 90 91 92 93 94 95 |
# File 'lib/aws-sdk-eksauth/types.rb', line 87 class AssumeRoleForPodIdentityResponse < Struct.new( :subject, :audience, :pod_identity_association, :assumed_role_user, :credentials) SENSITIVE = [:credentials] include Aws::Structure end |
#pod_identity_association ⇒ Types::PodIdentityAssociation
The Amazon Resource Name (ARN) and ID of the EKS Pod Identity association.
87 88 89 90 91 92 93 94 95 |
# File 'lib/aws-sdk-eksauth/types.rb', line 87 class AssumeRoleForPodIdentityResponse < Struct.new( :subject, :audience, :pod_identity_association, :assumed_role_user, :credentials) SENSITIVE = [:credentials] include Aws::Structure end |
#subject ⇒ Types::Subject
The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.
87 88 89 90 91 92 93 94 95 |
# File 'lib/aws-sdk-eksauth/types.rb', line 87 class AssumeRoleForPodIdentityResponse < Struct.new( :subject, :audience, :pod_identity_association, :assumed_role_user, :credentials) SENSITIVE = [:credentials] include Aws::Structure end |