Class: Aws::Greengrass::Types::Logger
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::Logger
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Information about a logger
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component ⇒ String
The component that will be subject to logging.
-
#id ⇒ String
A descriptive or arbitrary ID for the logger.
-
#level ⇒ String
The level of the logs.
-
#space ⇒ Integer
The amount of file space, in KB, to use if the local file system is used for logging purposes.
-
#type ⇒ String
The type of log output which will be used.
Instance Attribute Details
#component ⇒ String
The component that will be subject to logging.
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 |
#id ⇒ String
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:_-]+”.
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 |
#level ⇒ String
The level of the logs.
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 |
#space ⇒ Integer
The amount of file space, in KB, to use if the local file system is used for logging purposes.
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 |