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.

Constant Summary collapse

SENSITIVE =
[]

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)


3203
3204
3205
3206
3207
3208
3209
3210
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3203

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

#errorString

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

Returns:

  • (String)


3203
3204
3205
3206
3207
3208
3209
3210
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3203

class Notifications < Struct.new(
  :progressing,
  :completed,
  :warning,
  :error)
  SENSITIVE = []
  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)


3203
3204
3205
3206
3207
3208
3209
3210
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3203

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

#warningString

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

Returns:

  • (String)


3203
3204
3205
3206
3207
3208
3209
3210
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3203

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