Class: Aws::EKS::Types::Logging
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::Logging
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Note:
When making an API call, you may pass Logging data as a hash:
{
cluster_logging: [
{
types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
enabled: false,
},
],
}
An object representing the logging configuration for resources in your cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_logging ⇒ Array<Types::LogSetup>
The cluster control plane logging configuration for your cluster.
Instance Attribute Details
#cluster_logging ⇒ Array<Types::LogSetup>
The cluster control plane logging configuration for your cluster.
2612 2613 2614 2615 2616 |
# File 'lib/aws-sdk-eks/types.rb', line 2612 class Logging < Struct.new( :cluster_logging) SENSITIVE = [] include Aws::Structure end |