Class: Aws::EKS::Types::ListInsightsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListInsightsRequest
- Defined in:
- gems/aws-sdk-eks/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 associated with the insights.
-
#filter ⇒ Types::InsightsFilter
The criteria to filter your list of insights for your cluster.
-
#max_results ⇒ Integer
The maximum number of identity provider configurations returned by
ListInsightsin paginated output. -
#next_token ⇒ String
The
nextTokenvalue returned from a previous paginatedListInsightsrequest.
Instance Attribute Details
#cluster_name ⇒ String
The name of the Amazon EKS cluster associated with the insights.
5663 5664 5665 5666 5667 5668 5669 5670 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5663 class ListInsightsRequest < Struct.new( :cluster_name, :filter, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#filter ⇒ Types::InsightsFilter
The criteria to filter your list of insights for your cluster. You can filter which insights are returned by category, associated Kubernetes version, and status.
5663 5664 5665 5666 5667 5668 5669 5670 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5663 class ListInsightsRequest < Struct.new( :cluster_name, :filter, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of identity provider configurations returned by
ListInsights in paginated output. When you use this parameter,
ListInsights returns only maxResults results in a single page
along with a nextToken response element. You can see the remaining
results of the initial request by sending another ListInsights
request with the returned nextToken value. This value can be
between 1 and 100. If you don't use this parameter, ListInsights
returns up to 100 results and a nextToken value, if applicable.
5663 5664 5665 5666 5667 5668 5669 5670 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5663 class ListInsightsRequest < Struct.new( :cluster_name, :filter, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken value returned from a previous paginated
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.
5663 5664 5665 5666 5667 5668 5669 5670 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5663 class ListInsightsRequest < Struct.new( :cluster_name, :filter, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |