Class: Aws::EKS::Types::LogSetup

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#enabledBoolean

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.

Returns:

  • (Boolean)


4378
4379
4380
4381
4382
4383
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4378

class LogSetup < Struct.new(
  :types,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end

#typesArray<String>

The available cluster control plane log types.

Returns:

  • (Array<String>)


4378
4379
4380
4381
4382
4383
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4378

class LogSetup < Struct.new(
  :types,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end