Class: Aws::Lambda::Types::CapacityProviderLoggingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CapacityProviderLoggingConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The capacity provider's Amazon CloudWatch Logs configuration settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_group ⇒ String
The name of the Amazon CloudWatch log group the capacity provider sends logs to.
-
#system_log_level ⇒ String
Set this property to filter the system logs for your capacity provider that Lambda sends to CloudWatch.
Instance Attribute Details
#log_group ⇒ String
The name of the Amazon CloudWatch log group the capacity provider
sends logs to. By default, Lambda capacity providers send logs to a
default log group named /aws/lambda/capacity-provider/<capacity
provider name>. To use a different log group, enter an existing log
group or enter a new log group name.
657 658 659 660 661 662 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 657 class CapacityProviderLoggingConfig < Struct.new( :system_log_level, :log_group) SENSITIVE = [] include Aws::Structure end |
#system_log_level ⇒ String
Set this property to filter the system logs for your capacity
provider that Lambda sends to CloudWatch. Lambda only sends system
logs at the selected level of detail and lower, where DEBUG is the
highest level and WARN is the lowest.
657 658 659 660 661 662 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 657 class CapacityProviderLoggingConfig < Struct.new( :system_log_level, :log_group) SENSITIVE = [] include Aws::Structure end |