Class: Aws::TranscribeStreamingService::Types::ConfigurationEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::ConfigurationEvent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transcribestreamingservice/types.rb
Overview
Allows you to set audio channel definitions and post-call analytics settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_definitions ⇒ Array<Types::ChannelDefinition>
Indicates which speaker is on which audio channel.
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#post_call_analytics_settings ⇒ Types::PostCallAnalyticsSettings
Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.
Instance Attribute Details
#channel_definitions ⇒ Array<Types::ChannelDefinition>
Indicates which speaker is on which audio channel.
285 286 287 288 289 290 291 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 285 class ConfigurationEvent < Struct.new( :channel_definitions, :post_call_analytics_settings, :event_type) SENSITIVE = [] include Aws::Structure end |
#event_type ⇒ Object
Returns the value of attribute event_type
285 286 287 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 285 def event_type @event_type end |
#post_call_analytics_settings ⇒ Types::PostCallAnalyticsSettings
Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.
‘PostCallAnalyticsSettings` provides you with the same insights as a Call Analytics post-call transcription. Refer to [Post-call analytics] for more information on this feature.
[1]: docs.aws.amazon.com/transcribe/latest/dg/tca-post-call.html
285 286 287 288 289 290 291 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 285 class ConfigurationEvent < Struct.new( :channel_definitions, :post_call_analytics_settings, :event_type) SENSITIVE = [] include Aws::Structure end |