Interface BatchCreateAttendeeResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ChimeSdkMeetingsResponse.Builder,CopyableBuilder<BatchCreateAttendeeResponse.Builder,BatchCreateAttendeeResponse>,SdkBuilder<BatchCreateAttendeeResponse.Builder,BatchCreateAttendeeResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchCreateAttendeeResponse
public static interface BatchCreateAttendeeResponse.Builder extends ChimeSdkMeetingsResponse.Builder, SdkPojo, CopyableBuilder<BatchCreateAttendeeResponse.Builder,BatchCreateAttendeeResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchCreateAttendeeResponse.Builderattendees(Collection<Attendee> attendees)The attendee information, including attendees' IDs and join tokens.BatchCreateAttendeeResponse.Builderattendees(Consumer<Attendee.Builder>... attendees)The attendee information, including attendees' IDs and join tokens.BatchCreateAttendeeResponse.Builderattendees(Attendee... attendees)The attendee information, including attendees' IDs and join tokens.BatchCreateAttendeeResponse.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.BatchCreateAttendeeResponse.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.BatchCreateAttendeeResponse.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.-
Methods inherited from interface software.amazon.awssdk.services.chimesdkmeetings.model.ChimeSdkMeetingsResponse.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
-
attendees
BatchCreateAttendeeResponse.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
BatchCreateAttendeeResponse.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
BatchCreateAttendeeResponse.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
BatchCreateAttendeeResponse.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
BatchCreateAttendeeResponse.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
BatchCreateAttendeeResponse.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)
-
-