Interface Email.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Email.Builder,Email>,SdkBuilder<Email.Builder,Email>,SdkPojo
- Enclosing class:
public static interface Email.Builder extends SdkPojo, CopyableBuilder<Email.Builder,Email>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Email.Builderprimary(Boolean primary)A Boolean value representing whether this is the primary email address for the associated resource.Email.Buildertype(String type)A string representing the type of address.Email.Buildervalue(String value)A string containing an email address.-
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
-
value
Email.Builder value(String value)
A string containing an email address. For example, "johndoe@amazon.com."
- Parameters:
value- A string containing an email address. For example, "johndoe@amazon.com."- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Email.Builder type(String type)
A string representing the type of address. For example, "Work."
- Parameters:
type- A string representing the type of address. For example, "Work."- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primary
Email.Builder primary(Boolean primary)
A Boolean value representing whether this is the primary email address for the associated resource.
- Parameters:
primary- A Boolean value representing whether this is the primary email address for the associated resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-