Interface NotificationOptions.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<NotificationOptions.Builder,NotificationOptions>
,SdkBuilder<NotificationOptions.Builder,NotificationOptions>
,SdkPojo
- Enclosing class:
- NotificationOptions
@Mutable @NotThreadSafe public static interface NotificationOptions.Builder extends SdkPojo, CopyableBuilder<NotificationOptions.Builder,NotificationOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotificationOptions.Builder
emailMessage(String emailMessage)
Text value to be included in the email body.NotificationOptions.Builder
sendEmail(Boolean sendEmail)
Boolean value to indicate an email notification should be sent to the recipients.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
sendEmail
NotificationOptions.Builder sendEmail(Boolean sendEmail)
Boolean value to indicate an email notification should be sent to the recipients.
- Parameters:
sendEmail
- Boolean value to indicate an email notification should be sent to the recipients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emailMessage
NotificationOptions.Builder emailMessage(String emailMessage)
Text value to be included in the email body.
- Parameters:
emailMessage
- Text value to be included in the email body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-