Interface BatchCreateAttendeeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,ChimeSdkMeetingsRequest.Builder,CopyableBuilder<BatchCreateAttendeeRequest.Builder,BatchCreateAttendeeRequest>,SdkBuilder<BatchCreateAttendeeRequest.Builder,BatchCreateAttendeeRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- BatchCreateAttendeeRequest
public static interface BatchCreateAttendeeRequest.Builder extends ChimeSdkMeetingsRequest.Builder, SdkPojo, CopyableBuilder<BatchCreateAttendeeRequest.Builder,BatchCreateAttendeeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchCreateAttendeeRequest.Builderattendees(Collection<CreateAttendeeRequestItem> attendees)The attendee information, including attendees' IDs and join tokens.BatchCreateAttendeeRequest.Builderattendees(Consumer<CreateAttendeeRequestItem.Builder>... attendees)The attendee information, including attendees' IDs and join tokens.BatchCreateAttendeeRequest.Builderattendees(CreateAttendeeRequestItem... attendees)The attendee information, including attendees' IDs and join tokens.BatchCreateAttendeeRequest.BuildermeetingId(String meetingId)The Amazon Chime SDK ID of the meeting to which you're adding attendees.BatchCreateAttendeeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)BatchCreateAttendeeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.chimesdkmeetings.model.ChimeSdkMeetingsRequest.Builder
build
-
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
-
meetingId
BatchCreateAttendeeRequest.Builder meetingId(String meetingId)
The Amazon Chime SDK ID of the meeting to which you're adding attendees.
- Parameters:
meetingId- The Amazon Chime SDK ID of the meeting to which you're adding attendees.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attendees
BatchCreateAttendeeRequest.Builder attendees(Collection<CreateAttendeeRequestItem> 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
BatchCreateAttendeeRequest.Builder attendees(CreateAttendeeRequestItem... 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
BatchCreateAttendeeRequest.Builder attendees(Consumer<CreateAttendeeRequestItem.Builder>... attendees)
The attendee information, including attendees' IDs and join tokens.
This is a convenience method that creates an instance of theCreateAttendeeRequestItem.Builderavoiding the need to create one manually viaCreateAttendeeRequestItem.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 onCreateAttendeeRequestItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#attendees(java.util.Collection)
-
overrideConfiguration
BatchCreateAttendeeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
BatchCreateAttendeeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-