Class: Aws::EKS::Types::ListAccessEntriesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListAccessEntriesResponse
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_entries ⇒ Array<String>
The list of access entries that exist for the cluster.
-
#next_token ⇒ String
The
nextToken
value returned from a previous paginated request, wheremaxResults
was used and the results exceeded the value of that parameter.
Instance Attribute Details
#access_entries ⇒ Array<String>
The list of access entries that exist for the cluster.
4152 4153 4154 4155 4156 4157 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4152 class ListAccessEntriesResponse < Struct.new( :access_entries, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
value returned from a previous paginated request,
where maxResults
was used and the results exceeded the value of
that parameter. Pagination continues from the end of the previous
results that returned the nextToken
value. This value is null when
there are no more results to return.
4152 4153 4154 4155 4156 4157 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4152 class ListAccessEntriesResponse < Struct.new( :access_entries, :next_token) SENSITIVE = [] include Aws::Structure end |