Class: Aws::Polly::Types::ListSpeechSynthesisTasksInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-polly/types.rb

Overview

Note:

When making an API call, you may pass ListSpeechSynthesisTasksInput data as a hash:

{
  max_results: 1,
  next_token: "NextToken",
  status: "scheduled", # accepts scheduled, inProgress, completed, failed
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Maximum number of speech synthesis tasks returned in a List operation.

Returns:

  • (Integer)


506
507
508
509
510
511
512
# File 'lib/aws-sdk-polly/types.rb', line 506

class ListSpeechSynthesisTasksInput < Struct.new(
  :max_results,
  :next_token,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The pagination token to use in the next request to continue the listing of speech synthesis tasks.

Returns:

  • (String)


506
507
508
509
510
511
512
# File 'lib/aws-sdk-polly/types.rb', line 506

class ListSpeechSynthesisTasksInput < Struct.new(
  :max_results,
  :next_token,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

Status of the speech synthesis tasks returned in a List operation

Returns:

  • (String)


506
507
508
509
510
511
512
# File 'lib/aws-sdk-polly/types.rb', line 506

class ListSpeechSynthesisTasksInput < Struct.new(
  :max_results,
  :next_token,
  :status)
  SENSITIVE = []
  include Aws::Structure
end