Class: Aws::Polly::Types::StreamClosedEvent

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#event_typeObject

Returns the value of attribute event_type

Returns:

  • (Object)

    the current value of 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_charactersInteger

The total number of characters synthesized during the streaming session.

Returns:

  • (Integer)


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