Class: Aws::Greengrass::Types::Logger

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-greengrass/types.rb

Overview

Information about a logger

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#componentString

The component that will be subject to logging.

Returns:

  • (String)


3977
3978
3979
3980
3981
3982
3983
3984
3985
# File 'lib/aws-sdk-greengrass/types.rb', line 3977

class Logger < Struct.new(
  :component,
  :id,
  :level,
  :space,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#idString

A descriptive or arbitrary ID for the logger. This value must be unique within the logger definition version. Max length is 128 characters with pattern ”[a-zA-Z0-9:_-]+”.

Returns:

  • (String)


3977
3978
3979
3980
3981
3982
3983
3984
3985
# File 'lib/aws-sdk-greengrass/types.rb', line 3977

class Logger < Struct.new(
  :component,
  :id,
  :level,
  :space,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#levelString

The level of the logs.

Returns:

  • (String)


3977
3978
3979
3980
3981
3982
3983
3984
3985
# File 'lib/aws-sdk-greengrass/types.rb', line 3977

class Logger < Struct.new(
  :component,
  :id,
  :level,
  :space,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#spaceInteger

The amount of file space, in KB, to use if the local file system is used for logging purposes.

Returns:

  • (Integer)


3977
3978
3979
3980
3981
3982
3983
3984
3985
# File 'lib/aws-sdk-greengrass/types.rb', line 3977

class Logger < Struct.new(
  :component,
  :id,
  :level,
  :space,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of log output which will be used.

Returns:

  • (String)


3977
3978
3979
3980
3981
3982
3983
3984
3985
# File 'lib/aws-sdk-greengrass/types.rb', line 3977

class Logger < Struct.new(
  :component,
  :id,
  :level,
  :space,
  :type)
  SENSITIVE = []
  include Aws::Structure
end