Interface EmailRecipient.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EmailRecipient.Builder,EmailRecipient>,SdkBuilder<EmailRecipient.Builder,EmailRecipient>,SdkPojo
- Enclosing class:
- EmailRecipient
public static interface EmailRecipient.Builder extends SdkPojo, CopyableBuilder<EmailRecipient.Builder,EmailRecipient>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmailRecipient.Builderaddress(String address)Address of the email recipient.EmailRecipient.BuilderdisplayName(String displayName)Display name of the email recipient.-
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
-
address
EmailRecipient.Builder address(String address)
Address of the email recipient.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
- Parameters:
address- Address of the email recipient.Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
EmailRecipient.Builder displayName(String displayName)
Display name of the email recipient.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
- Parameters:
displayName- Display name of the email recipient.Type: String
Length Constraints: Minimum length of 1. Maximum length of 256.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-