Class: Aws::ElasticTranscoder::Types::Notifications

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

Overview

Note:

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

{
  progressing: "SnsTopic",
  completed: "SnsTopic",
  warning: "SnsTopic",
  error: "SnsTopic",
}

The Amazon Simple Notification Service (Amazon SNS) topic or topics to notify in order to report job status.

To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.

Instance Attribute Summary collapse

Instance Attribute Details

#completedString

The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.

Returns:

  • (String)


3150
3151
3152
3153
3154
3155
3156
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3150

class Notifications < Struct.new(
  :progressing,
  :completed,
  :warning,
  :error)
  include Aws::Structure
end

#errorString

The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.

Returns:

  • (String)


3150
3151
3152
3153
3154
3155
3156
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3150

class Notifications < Struct.new(
  :progressing,
  :completed,
  :warning,
  :error)
  include Aws::Structure
end

#progressingString

The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.

Returns:

  • (String)


3150
3151
3152
3153
3154
3155
3156
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3150

class Notifications < Struct.new(
  :progressing,
  :completed,
  :warning,
  :error)
  include Aws::Structure
end

#warningString

The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.

Returns:

  • (String)


3150
3151
3152
3153
3154
3155
3156
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3150

class Notifications < Struct.new(
  :progressing,
  :completed,
  :warning,
  :error)
  include Aws::Structure
end