Interface CreateMeetingWithAttendeesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ChimeResponse.Builder,CopyableBuilder<CreateMeetingWithAttendeesResponse.Builder,CreateMeetingWithAttendeesResponse>,SdkBuilder<CreateMeetingWithAttendeesResponse.Builder,CreateMeetingWithAttendeesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateMeetingWithAttendeesResponse
public static interface CreateMeetingWithAttendeesResponse.Builder extends ChimeResponse.Builder, SdkPojo, CopyableBuilder<CreateMeetingWithAttendeesResponse.Builder,CreateMeetingWithAttendeesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateMeetingWithAttendeesResponse.Builderattendees(Collection<Attendee> attendees)The attendee information, including attendees IDs and join tokens.CreateMeetingWithAttendeesResponse.Builderattendees(Consumer<Attendee.Builder>... attendees)The attendee information, including attendees IDs and join tokens.CreateMeetingWithAttendeesResponse.Builderattendees(Attendee... attendees)The attendee information, including attendees IDs and join tokens.CreateMeetingWithAttendeesResponse.Buildererrors(Collection<CreateAttendeeError> errors)If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.CreateMeetingWithAttendeesResponse.Buildererrors(Consumer<CreateAttendeeError.Builder>... errors)If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.CreateMeetingWithAttendeesResponse.Buildererrors(CreateAttendeeError... errors)If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.default CreateMeetingWithAttendeesResponse.Buildermeeting(Consumer<Meeting.Builder> meeting)A meeting created using the Amazon Chime SDK.CreateMeetingWithAttendeesResponse.Buildermeeting(Meeting meeting)A meeting created using the Amazon Chime SDK.-
Methods inherited from interface software.amazon.awssdk.services.chime.model.ChimeResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
meeting
CreateMeetingWithAttendeesResponse.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 CreateMeetingWithAttendeesResponse.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)
-
attendees
CreateMeetingWithAttendeesResponse.Builder attendees(Collection<Attendee> attendees)
The attendee information, including attendees IDs and join tokens.
- Parameters:
attendees- The attendee information, including attendees IDs and join tokens.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attendees
CreateMeetingWithAttendeesResponse.Builder attendees(Attendee... attendees)
The attendee information, including attendees IDs and join tokens.
- Parameters:
attendees- The attendee information, including attendees IDs and join tokens.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attendees
CreateMeetingWithAttendeesResponse.Builder attendees(Consumer<Attendee.Builder>... attendees)
The attendee information, including attendees IDs and join tokens.
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 to#attendees(List.) - Parameters:
attendees- 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:
#attendees(java.util.Collection)
-
errors
CreateMeetingWithAttendeesResponse.Builder errors(Collection<CreateAttendeeError> errors)
If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.
- Parameters:
errors- If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
CreateMeetingWithAttendeesResponse.Builder errors(CreateAttendeeError... errors)
If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.
- Parameters:
errors- If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
CreateMeetingWithAttendeesResponse.Builder errors(Consumer<CreateAttendeeError.Builder>... errors)
If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.
This is a convenience method that creates an instance of theCreateAttendeeError.Builderavoiding the need to create one manually viaCreateAttendeeError.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#errors(List.) - Parameters:
errors- a consumer that will call methods onCreateAttendeeError.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
-