Class: Aws::EKS::Types::LogSetup
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::LogSetup
- Defined in:
- gems/aws-sdk-eks/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.
4586 4587 4588 4589 4590 4591 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4586 class LogSetup < Struct.new( :types, :enabled) SENSITIVE = [] include Aws::Structure end |