Class: Aws::EKS::Types::ListPodIdentityAssociationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListPodIdentityAssociationsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#associations ⇒ Array<Types::PodIdentityAssociationSummary>
The list of summarized descriptions of the associations that are in the cluster and match any filters that you provided.
-
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListPodIdentityAssociations` request.
Instance Attribute Details
#associations ⇒ Array<Types::PodIdentityAssociationSummary>
The list of summarized descriptions of the associations that are in the cluster and match any filters that you provided.
Each summary is simplified by removing these fields compared to the full [ ‘PodIdentityAssociation` ][1]:
-
The IAM role: ‘roleArn`
-
The timestamp that the association was created at: ‘createdAt`
-
The most recent timestamp that the association was modified at:. ‘modifiedAt`
-
The tags on the association: ‘tags`
[1]: docs.aws.amazon.com/eks/latest/APIReference/API_PodIdentityAssociation.html
5034 5035 5036 5037 5038 5039 |
# File 'lib/aws-sdk-eks/types.rb', line 5034 class ListPodIdentityAssociationsResponse < Struct.new( :associations, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListPodIdentityAssociations` request. When the results of a `ListPodIdentityAssociations` request exceed `maxResults`, you can use this value to retrieve the next page of results. This value is `null` when there are no more results to return.
<note markdown=“1”> This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
</note>
5034 5035 5036 5037 5038 5039 |
# File 'lib/aws-sdk-eks/types.rb', line 5034 class ListPodIdentityAssociationsResponse < Struct.new( :associations, :next_token) SENSITIVE = [] include Aws::Structure end |