Interface ParticipantDetailsToAdd.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ParticipantDetailsToAdd.Builder,
,ParticipantDetailsToAdd> SdkBuilder<ParticipantDetailsToAdd.Builder,
,ParticipantDetailsToAdd> SdkPojo
- Enclosing class:
ParticipantDetailsToAdd
@Mutable
@NotThreadSafe
public static interface ParticipantDetailsToAdd.Builder
extends SdkPojo, CopyableBuilder<ParticipantDetailsToAdd.Builder,ParticipantDetailsToAdd>
-
Method Summary
Modifier and TypeMethodDescriptiondisplayName
(String displayName) The display name of the participant.default ParticipantDetailsToAdd.Builder
participantCapabilities
(Consumer<ParticipantCapabilities.Builder> participantCapabilities) Sets the value of the ParticipantCapabilities property for this object.participantCapabilities
(ParticipantCapabilities participantCapabilities) Sets the value of the ParticipantCapabilities property for this object.participantRole
(String participantRole) The role of the participant being added.participantRole
(ParticipantRole participantRole) The role of the participant being added.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 Details
-
participantRole
The role of the participant being added.
- Parameters:
participantRole
- The role of the participant being added.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
participantRole
The role of the participant being added.
- Parameters:
participantRole
- The role of the participant being added.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
displayName
The display name of the participant.
- Parameters:
displayName
- The display name of the participant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participantCapabilities
ParticipantDetailsToAdd.Builder participantCapabilities(ParticipantCapabilities participantCapabilities) Sets the value of the ParticipantCapabilities property for this object.- Parameters:
participantCapabilities
- The new value for the ParticipantCapabilities property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participantCapabilities
default ParticipantDetailsToAdd.Builder participantCapabilities(Consumer<ParticipantCapabilities.Builder> participantCapabilities) Sets the value of the ParticipantCapabilities property for this object. This is a convenience method that creates an instance of theParticipantCapabilities.Builder
avoiding the need to create one manually viaParticipantCapabilities.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toparticipantCapabilities(ParticipantCapabilities)
.- Parameters:
participantCapabilities
- a consumer that will call methods onParticipantCapabilities.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-