Interface Notifications.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Notifications.Builder,Notifications>,SdkBuilder<Notifications.Builder,Notifications>,SdkPojo
- Enclosing class:
- Notifications
public static interface Notifications.Builder extends SdkPojo, CopyableBuilder<Notifications.Builder,Notifications>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Notifications.Buildercompleted(String completed)The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.Notifications.Buildererror(String error)The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.Notifications.Builderprogressing(String progressing)The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.Notifications.Builderwarning(String warning)The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
progressing
Notifications.Builder progressing(String progressing)
The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.
- Parameters:
progressing- The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
completed
Notifications.Builder completed(String completed)
The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.
- Parameters:
completed- The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warning
Notifications.Builder warning(String warning)
The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.
- Parameters:
warning- The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
Notifications.Builder error(String error)
The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.
- Parameters:
error- The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-