Interface ListEmailIdentitiesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListEmailIdentitiesResponse.Builder,ListEmailIdentitiesResponse>,PinpointEmailResponse.Builder,SdkBuilder<ListEmailIdentitiesResponse.Builder,ListEmailIdentitiesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListEmailIdentitiesResponse
public static interface ListEmailIdentitiesResponse.Builder extends PinpointEmailResponse.Builder, SdkPojo, CopyableBuilder<ListEmailIdentitiesResponse.Builder,ListEmailIdentitiesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListEmailIdentitiesResponse.BuilderemailIdentities(Collection<IdentityInfo> emailIdentities)An array that includes all of the identities associated with your Amazon Pinpoint account.ListEmailIdentitiesResponse.BuilderemailIdentities(Consumer<IdentityInfo.Builder>... emailIdentities)An array that includes all of the identities associated with your Amazon Pinpoint account.ListEmailIdentitiesResponse.BuilderemailIdentities(IdentityInfo... emailIdentities)An array that includes all of the identities associated with your Amazon Pinpoint account.ListEmailIdentitiesResponse.BuildernextToken(String nextToken)A token that indicates that there are additional configuration sets to list.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pinpointemail.model.PinpointEmailResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
emailIdentities
ListEmailIdentitiesResponse.Builder emailIdentities(Collection<IdentityInfo> emailIdentities)
An array that includes all of the identities associated with your Amazon Pinpoint account.
- Parameters:
emailIdentities- An array that includes all of the identities associated with your Amazon Pinpoint account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emailIdentities
ListEmailIdentitiesResponse.Builder emailIdentities(IdentityInfo... emailIdentities)
An array that includes all of the identities associated with your Amazon Pinpoint account.
- Parameters:
emailIdentities- An array that includes all of the identities associated with your Amazon Pinpoint account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emailIdentities
ListEmailIdentitiesResponse.Builder emailIdentities(Consumer<IdentityInfo.Builder>... emailIdentities)
An array that includes all of the identities associated with your Amazon Pinpoint account.
This is a convenience method that creates an instance of theIdentityInfo.Builderavoiding the need to create one manually viaIdentityInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#emailIdentities(List.) - Parameters:
emailIdentities- a consumer that will call methods onIdentityInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#emailIdentities(java.util.Collection)
-
nextToken
ListEmailIdentitiesResponse.Builder nextToken(String nextToken)
A token that indicates that there are additional configuration sets to list. To view additional configuration sets, issue another request to
ListEmailIdentities, and pass this token in theNextTokenparameter.- Parameters:
nextToken- A token that indicates that there are additional configuration sets to list. To view additional configuration sets, issue another request toListEmailIdentities, and pass this token in theNextTokenparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-