Class: Aws::EKS::Types::ListInsightsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListInsightsResponse
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#insights ⇒ Array<Types::InsightSummary>
The returned list of insights.
-
#next_token ⇒ String
The
nextTokenvalue to include in a futureListInsightsrequest.
Instance Attribute Details
#insights ⇒ Array<Types::InsightSummary>
The returned list of insights.
5597 5598 5599 5600 5601 5602 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5597 class ListInsightsResponse < Struct.new( :insights, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken value to include in a future ListInsights request.
When the results of a ListInsights 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.
5597 5598 5599 5600 5601 5602 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5597 class ListInsightsResponse < Struct.new( :insights, :next_token) SENSITIVE = [] include Aws::Structure end |