Class: Aws::EKS::Types::ListCapabilitiesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListCapabilitiesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name of the Amazon EKS cluster for which you want to list capabilities.
-
#max_results ⇒ Integer
The maximum number of results to return in a single call.
-
#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.
Instance Attribute Details
#cluster_name ⇒ String
The name of the Amazon EKS cluster for which you want to list capabilities.
5253 5254 5255 5256 5257 5258 5259 |
# File 'lib/aws-sdk-eks/types.rb', line 5253 class ListCapabilitiesRequest < Struct.new( :cluster_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned ‘nextToken` value. If you don’t specify a value, the default is 100 results.
5253 5254 5255 5256 5257 5258 5259 |
# File 'lib/aws-sdk-eks/types.rb', line 5253 class ListCapabilitiesRequest < Struct.new( :cluster_name, :next_token, :max_results) 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.
5253 5254 5255 5256 5257 5258 5259 |
# File 'lib/aws-sdk-eks/types.rb', line 5253 class ListCapabilitiesRequest < Struct.new( :cluster_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |