Class: Aws::EKS::Types::InsightsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::InsightsFilter
- 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
-
#categories ⇒ Array<String>
The categories to use to filter insights.
-
#kubernetes_versions ⇒ Array<String>
The Kubernetes versions to use to filter the insights.
-
#statuses ⇒ Array<String>
The statuses to use to filter the insights.
Instance Attribute Details
#categories ⇒ Array<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.
4550 4551 4552 4553 4554 4555 4556 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4550 class InsightsFilter < Struct.new( :categories, :kubernetes_versions, :statuses) SENSITIVE = [] include Aws::Structure end |
#kubernetes_versions ⇒ Array<String>
The Kubernetes versions to use to filter the insights.
4550 4551 4552 4553 4554 4555 4556 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4550 class InsightsFilter < Struct.new( :categories, :kubernetes_versions, :statuses) SENSITIVE = [] include Aws::Structure end |
#statuses ⇒ Array<String>
The statuses to use to filter the insights.
4550 4551 4552 4553 4554 4555 4556 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4550 class InsightsFilter < Struct.new( :categories, :kubernetes_versions, :statuses) SENSITIVE = [] include Aws::Structure end |