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
Modifier and TypeMethodDescriptiondefault ConnectionData.Builder
attendee
(Consumer<Attendee.Builder> attendee) The attendee information, including attendee ID and join token.The attendee information, including attendee ID and join token.default ConnectionData.Builder
meeting
(Consumer<Meeting.Builder> meeting) A meeting created using the Amazon Chime SDK.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 Details
-
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
The attendee information, including attendee ID and join token.
This is a convenience method that creates an instance of theAttendee.Builder
avoiding the need to create one manually viaAttendee.builder()
.When the
Consumer
completes,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:
-
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
A meeting created using the Amazon Chime SDK.
This is a convenience method that creates an instance of theMeeting.Builder
avoiding the need to create one manually viaMeeting.builder()
.When the
Consumer
completes,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:
-