Interface ConnectionData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionData.Builder,ConnectionData>,SdkBuilder<ConnectionData.Builder,ConnectionData>,SdkPojo
- Enclosing class:
- ConnectionData
public static interface ConnectionData.Builder extends SdkPojo, CopyableBuilder<ConnectionData.Builder,ConnectionData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ConnectionData.Builderattendee(Consumer<Attendee.Builder> attendee)The attendee information, including attendee ID and join token.ConnectionData.Builderattendee(Attendee attendee)The attendee information, including attendee ID and join token.default ConnectionData.Buildermeeting(Consumer<Meeting.Builder> meeting)A meeting created using the Amazon Chime SDK.ConnectionData.Buildermeeting(Meeting meeting)A meeting created using the Amazon Chime SDK.-
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
-
attendee
ConnectionData.Builder attendee(Attendee attendee)
The attendee information, including attendee ID and join token.
- Parameters:
attendee- The attendee information, including attendee ID and join token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attendee
default ConnectionData.Builder attendee(Consumer<Attendee.Builder> attendee)
The attendee information, including attendee ID and join token.
This is a convenience method that creates an instance of theAttendee.Builderavoiding the need to create one manually viaAttendee.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toattendee(Attendee).- Parameters:
attendee- a consumer that will call methods onAttendee.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
attendee(Attendee)
-
meeting
ConnectionData.Builder meeting(Meeting meeting)
A meeting created using the Amazon Chime SDK.
- Parameters:
meeting- A meeting created using the Amazon Chime SDK.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
meeting
default ConnectionData.Builder meeting(Consumer<Meeting.Builder> meeting)
A meeting created using the Amazon Chime SDK.
This is a convenience method that creates an instance of theMeeting.Builderavoiding the need to create one manually viaMeeting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomeeting(Meeting).- Parameters:
meeting- a consumer that will call methods onMeeting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
meeting(Meeting)
-
-