Class: Aws::LexModelsV2::Types::AudioLogSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::AudioLogSetting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Settings for logging audio of conversations between Amazon Lex and a user. You specify whether to log audio and the Amazon S3 bucket where the audio file is stored.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ Types::AudioLogDestination
The location of audio log files collected when conversation logging is enabled for a bot.
-
#enabled ⇒ Boolean
Determines whether audio logging in enabled for the bot.
-
#selective_logging_enabled ⇒ Boolean
The option to enable selective conversation log capture for audio.
Instance Attribute Details
#destination ⇒ Types::AudioLogDestination
The location of audio log files collected when conversation logging is enabled for a bot.
1581 1582 1583 1584 1585 1586 1587 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1581 class AudioLogSetting < Struct.new( :enabled, :destination, :selective_logging_enabled) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Determines whether audio logging in enabled for the bot.
1581 1582 1583 1584 1585 1586 1587 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1581 class AudioLogSetting < Struct.new( :enabled, :destination, :selective_logging_enabled) SENSITIVE = [] include Aws::Structure end |
#selective_logging_enabled ⇒ Boolean
The option to enable selective conversation log capture for audio.
1581 1582 1583 1584 1585 1586 1587 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1581 class AudioLogSetting < Struct.new( :enabled, :destination, :selective_logging_enabled) SENSITIVE = [] include Aws::Structure end |