Class: Aws::Polly::Types::StreamClosedEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::Polly::Types::StreamClosedEvent
- Defined in:
- gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb
Overview
Indicates that the synthesis stream is closed and provides summary information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#request_characters ⇒ Integer
The total number of characters synthesized during the streaming session.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
845 846 847 |
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 845 def event_type @event_type end |
#request_characters ⇒ Integer
The total number of characters synthesized during the streaming session.
845 846 847 848 849 850 |
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 845 class StreamClosedEvent < Struct.new( :request_characters, :event_type) SENSITIVE = [] include Aws::Structure end |