Interface NotifyEmailType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NotifyEmailType.Builder,NotifyEmailType>,SdkBuilder<NotifyEmailType.Builder,NotifyEmailType>,SdkPojo
- Enclosing class:
- NotifyEmailType
public static interface NotifyEmailType.Builder extends SdkPojo, CopyableBuilder<NotifyEmailType.Builder,NotifyEmailType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotifyEmailType.BuilderhtmlBody(String htmlBody)The email HTML body.NotifyEmailType.Buildersubject(String subject)The email subject.NotifyEmailType.BuildertextBody(String textBody)The email text body.-
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
-
subject
NotifyEmailType.Builder subject(String subject)
The email subject.
- Parameters:
subject- The email subject.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
htmlBody
NotifyEmailType.Builder htmlBody(String htmlBody)
The email HTML body.
- Parameters:
htmlBody- The email HTML body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textBody
NotifyEmailType.Builder textBody(String textBody)
The email text body.
- Parameters:
textBody- The email text body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-