Interface PutOptedOutNumberResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<PutOptedOutNumberResponse.Builder,PutOptedOutNumberResponse>,PinpointSmsVoiceV2Response.Builder,SdkBuilder<PutOptedOutNumberResponse.Builder,PutOptedOutNumberResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PutOptedOutNumberResponse
public static interface PutOptedOutNumberResponse.Builder extends PinpointSmsVoiceV2Response.Builder, SdkPojo, CopyableBuilder<PutOptedOutNumberResponse.Builder,PutOptedOutNumberResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutOptedOutNumberResponse.BuilderendUserOptedOut(Boolean endUserOptedOut)This is true if it was the end user who requested their phone number be removed.PutOptedOutNumberResponse.BuilderoptedOutNumber(String optedOutNumber)The phone number that was added to the OptOutList.PutOptedOutNumberResponse.BuilderoptedOutTimestamp(Instant optedOutTimestamp)The time that the phone number was added to the OptOutList, in UNIX epoch time format.PutOptedOutNumberResponse.BuilderoptOutListArn(String optOutListArn)The OptOutListArn that the phone number was removed from.PutOptedOutNumberResponse.BuilderoptOutListName(String optOutListName)The OptOutListName that the phone number was removed from.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pinpointsmsvoicev2.model.PinpointSmsVoiceV2Response.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
-
optOutListArn
PutOptedOutNumberResponse.Builder optOutListArn(String optOutListArn)
The OptOutListArn that the phone number was removed from.
- Parameters:
optOutListArn- The OptOutListArn that the phone number was removed from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optOutListName
PutOptedOutNumberResponse.Builder optOutListName(String optOutListName)
The OptOutListName that the phone number was removed from.
- Parameters:
optOutListName- The OptOutListName that the phone number was removed from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optedOutNumber
PutOptedOutNumberResponse.Builder optedOutNumber(String optedOutNumber)
The phone number that was added to the OptOutList.
- Parameters:
optedOutNumber- The phone number that was added to the OptOutList.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optedOutTimestamp
PutOptedOutNumberResponse.Builder optedOutTimestamp(Instant optedOutTimestamp)
The time that the phone number was added to the OptOutList, in UNIX epoch time format.
- Parameters:
optedOutTimestamp- The time that the phone number was added to the OptOutList, in UNIX epoch time format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endUserOptedOut
PutOptedOutNumberResponse.Builder endUserOptedOut(Boolean endUserOptedOut)
This is true if it was the end user who requested their phone number be removed.
- Parameters:
endUserOptedOut- This is true if it was the end user who requested their phone number be removed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-