Class: Aws::MediaTailor::Types::LogConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::LogConfiguration
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
Returns Amazon CloudWatch log settings for a playback configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#percent_enabled ⇒ Integer
The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account.
Instance Attribute Details
#percent_enabled ⇒ Integer
The percentage of session logs that MediaTailor sends to your
Cloudwatch Logs account. For example, if your playback configuration
has 1000 sessions and percentEnabled
is set to 60
, MediaTailor
sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor
decides at random which of the playback configuration sessions to
send logs for. If you want to view logs for a specific session, you
can use the debug log mode.
Valid values: 0
- 100
2852 2853 2854 2855 2856 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2852 class LogConfiguration < Struct.new( :percent_enabled) SENSITIVE = [] include Aws::Structure end |