Class: Aws::LexModelsV2::Types::AudioLogDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::AudioLogDestination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
The location of audio log files collected when conversation logging is enabled for a bot.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ Types::S3BucketLogDestination
The Amazon S3 bucket where the audio log files are stored.
Instance Attribute Details
#s3_bucket ⇒ Types::S3BucketLogDestination
The Amazon S3 bucket where the audio log files are stored. The IAM role specified in the ‘roleArn` parameter of the [CreateBot] operation must have permission to write to this bucket.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_CreateBot.html
1556 1557 1558 1559 1560 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1556 class AudioLogDestination < Struct.new( :s3_bucket) SENSITIVE = [] include Aws::Structure end |