Class: Aws::EKS::Types::LogSetup
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::LogSetup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
An object representing the enabled or disabled Kubernetes control plane logs for your cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs.
-
#types ⇒ Array<String>
The available cluster control plane log types.
Instance Attribute Details
#enabled ⇒ Boolean
If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a log type isn’t enabled, that log type doesn’t export its control plane logs. Each individual log type can be enabled or disabled independently.
4761 4762 4763 4764 4765 4766 |
# File 'lib/aws-sdk-eks/types.rb', line 4761 class LogSetup < Struct.new( :types, :enabled) SENSITIVE = [] include Aws::Structure end |