Interface ConferenceProvider.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConferenceProvider.Builder,ConferenceProvider>,SdkBuilder<ConferenceProvider.Builder,ConferenceProvider>,SdkPojo
- Enclosing class:
- ConferenceProvider
public static interface ConferenceProvider.Builder extends SdkPojo, CopyableBuilder<ConferenceProvider.Builder,ConferenceProvider>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ConferenceProvider.Builderarn(String arn)The ARN of the newly created conference provider.default ConferenceProvider.BuilderipDialIn(Consumer<IPDialIn.Builder> ipDialIn)The IP endpoint and protocol for calling.ConferenceProvider.BuilderipDialIn(IPDialIn ipDialIn)The IP endpoint and protocol for calling.default ConferenceProvider.BuildermeetingSetting(Consumer<MeetingSetting.Builder> meetingSetting)The meeting settings for the conference provider.ConferenceProvider.BuildermeetingSetting(MeetingSetting meetingSetting)The meeting settings for the conference provider.ConferenceProvider.Buildername(String name)The name of the conference provider.default ConferenceProvider.BuilderpstnDialIn(Consumer<PSTNDialIn.Builder> pstnDialIn)The information for PSTN conferencing.ConferenceProvider.BuilderpstnDialIn(PSTNDialIn pstnDialIn)The information for PSTN conferencing.ConferenceProvider.Buildertype(String type)The type of conference providers.ConferenceProvider.Buildertype(ConferenceProviderType type)The type of conference providers.-
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
-
arn
ConferenceProvider.Builder arn(String arn)
The ARN of the newly created conference provider.
- Parameters:
arn- The ARN of the newly created conference provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
ConferenceProvider.Builder name(String name)
The name of the conference provider.
- Parameters:
name- The name of the conference provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
ConferenceProvider.Builder type(String type)
The type of conference providers.
- Parameters:
type- The type of conference providers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConferenceProviderType,ConferenceProviderType
-
type
ConferenceProvider.Builder type(ConferenceProviderType type)
The type of conference providers.
- Parameters:
type- The type of conference providers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConferenceProviderType,ConferenceProviderType
-
ipDialIn
ConferenceProvider.Builder ipDialIn(IPDialIn ipDialIn)
The IP endpoint and protocol for calling.
- Parameters:
ipDialIn- The IP endpoint and protocol for calling.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipDialIn
default ConferenceProvider.Builder ipDialIn(Consumer<IPDialIn.Builder> ipDialIn)
The IP endpoint and protocol for calling.
This is a convenience method that creates an instance of theIPDialIn.Builderavoiding the need to create one manually viaIPDialIn.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toipDialIn(IPDialIn).- Parameters:
ipDialIn- a consumer that will call methods onIPDialIn.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ipDialIn(IPDialIn)
-
pstnDialIn
ConferenceProvider.Builder pstnDialIn(PSTNDialIn pstnDialIn)
The information for PSTN conferencing.
- Parameters:
pstnDialIn- The information for PSTN conferencing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pstnDialIn
default ConferenceProvider.Builder pstnDialIn(Consumer<PSTNDialIn.Builder> pstnDialIn)
The information for PSTN conferencing.
This is a convenience method that creates an instance of thePSTNDialIn.Builderavoiding the need to create one manually viaPSTNDialIn.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topstnDialIn(PSTNDialIn).- Parameters:
pstnDialIn- a consumer that will call methods onPSTNDialIn.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
pstnDialIn(PSTNDialIn)
-
meetingSetting
ConferenceProvider.Builder meetingSetting(MeetingSetting meetingSetting)
The meeting settings for the conference provider.
- Parameters:
meetingSetting- The meeting settings for the conference provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
meetingSetting
default ConferenceProvider.Builder meetingSetting(Consumer<MeetingSetting.Builder> meetingSetting)
The meeting settings for the conference provider.
This is a convenience method that creates an instance of theMeetingSetting.Builderavoiding the need to create one manually viaMeetingSetting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomeetingSetting(MeetingSetting).- Parameters:
meetingSetting- a consumer that will call methods onMeetingSetting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
meetingSetting(MeetingSetting)
-
-