Interface CallDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CallDetails.Builder,CallDetails>,SdkBuilder<CallDetails.Builder,CallDetails>,SdkPojo
- Enclosing class:
- CallDetails
public static interface CallDetails.Builder extends SdkPojo, CopyableBuilder<CallDetails.Builder,CallDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallDetails.BuilderisCaller(Boolean isCaller)Identifies a person as the caller or the callee.CallDetails.BuildertransactionId(String transactionId)The transaction ID of a Voice Connector call.CallDetails.BuildervoiceConnectorId(String voiceConnectorId)The Voice Connector ID.-
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
-
voiceConnectorId
CallDetails.Builder voiceConnectorId(String voiceConnectorId)
The Voice Connector ID.
- Parameters:
voiceConnectorId- The Voice Connector ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transactionId
CallDetails.Builder transactionId(String transactionId)
The transaction ID of a Voice Connector call.
- Parameters:
transactionId- The transaction ID of a Voice Connector call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isCaller
CallDetails.Builder isCaller(Boolean isCaller)
Identifies a person as the caller or the callee.
- Parameters:
isCaller- Identifies a person as the caller or the callee.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-