Class: Aws::TranscribeStreamingService::Types::ChannelDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::ChannelDefinition
- Defined in:
- gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb
Overview
Makes it possible to specify which speaker is on which audio channel.
For example, if your agent is the first participant to speak, you
would set ChannelId
to 0
(to indicate the first channel) and
ParticipantRole
to AGENT
(to indicate that it's the agent
speaking).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_id ⇒ Integer
Specify the audio channel you want to define.
-
#participant_role ⇒ String
Specify the speaker you want to define.
Instance Attribute Details
#channel_id ⇒ Integer
Specify the audio channel you want to define.
230 231 232 233 234 235 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 230 class ChannelDefinition < Struct.new( :channel_id, :participant_role) SENSITIVE = [] include Aws::Structure end |
#participant_role ⇒ String
Specify the speaker you want to define. Omitting this parameter is equivalent to specifying both participants.
230 231 232 233 234 235 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 230 class ChannelDefinition < Struct.new( :channel_id, :participant_role) SENSITIVE = [] include Aws::Structure end |