Class: Aws::EKS::Types::ListCapabilitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListCapabilitiesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capabilities ⇒ Array<Types::CapabilitySummary>
A list of capability summary objects, each containing basic information about a capability including its name, ARN, type, status, version, and timestamps.
-
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListCapabilities` request.
Instance Attribute Details
#capabilities ⇒ Array<Types::CapabilitySummary>
A list of capability summary objects, each containing basic information about a capability including its name, ARN, type, status, version, and timestamps.
5277 5278 5279 5280 5281 5282 |
# File 'lib/aws-sdk-eks/types.rb', line 5277 class ListCapabilitiesResponse < Struct.new( :capabilities, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListCapabilities` request. When the results of a `ListCapabilities` 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.
5277 5278 5279 5280 5281 5282 |
# File 'lib/aws-sdk-eks/types.rb', line 5277 class ListCapabilitiesResponse < Struct.new( :capabilities, :next_token) SENSITIVE = [] include Aws::Structure end |