Class: Aws::EKS::Types::InsightsFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb

Overview

The criteria to use for the insights.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#categoriesArray<String>

The categories to use to filter insights. The following lists the available categories:

  • UPGRADE_READINESS: Amazon EKS identifies issues that could impact your ability to upgrade to new versions of Kubernetes. These are called upgrade insights.

  • MISCONFIGURATION: Amazon EKS identifies misconfiguration in your EKS Hybrid Nodes setup that could impair functionality of your cluster or workloads. These are called configuration insights.

Returns:

  • (Array<String>)


3879
3880
3881
3882
3883
3884
3885
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 3879

class InsightsFilter < Struct.new(
  :categories,
  :kubernetes_versions,
  :statuses)
  SENSITIVE = []
  include Aws::Structure
end

#kubernetes_versionsArray<String>

The Kubernetes versions to use to filter the insights.

Returns:

  • (Array<String>)


3879
3880
3881
3882
3883
3884
3885
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 3879

class InsightsFilter < Struct.new(
  :categories,
  :kubernetes_versions,
  :statuses)
  SENSITIVE = []
  include Aws::Structure
end

#statusesArray<String>

The statuses to use to filter the insights.

Returns:

  • (Array<String>)


3879
3880
3881
3882
3883
3884
3885
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 3879

class InsightsFilter < Struct.new(
  :categories,
  :kubernetes_versions,
  :statuses)
  SENSITIVE = []
  include Aws::Structure
end