public static interface ConferenceProvider.Builder extends SdkPojo, CopyableBuilder<ConferenceProvider.Builder,ConferenceProvider>
Modifier and Type | Method and Description |
---|---|
ConferenceProvider.Builder |
arn(String arn)
The ARN of the newly created conference provider.
|
default ConferenceProvider.Builder |
ipDialIn(Consumer<IPDialIn.Builder> ipDialIn)
The IP endpoint and protocol for calling.
|
ConferenceProvider.Builder |
ipDialIn(IPDialIn ipDialIn)
The IP endpoint and protocol for calling.
|
default ConferenceProvider.Builder |
meetingSetting(Consumer<MeetingSetting.Builder> meetingSetting)
The meeting settings for the conference provider.
|
ConferenceProvider.Builder |
meetingSetting(MeetingSetting meetingSetting)
The meeting settings for the conference provider.
|
ConferenceProvider.Builder |
name(String name)
The name of the conference provider.
|
default ConferenceProvider.Builder |
pstnDialIn(Consumer<PSTNDialIn.Builder> pstnDialIn)
The information for PSTN conferencing.
|
ConferenceProvider.Builder |
pstnDialIn(PSTNDialIn pstnDialIn)
The information for PSTN conferencing.
|
ConferenceProvider.Builder |
type(ConferenceProviderType type)
The type of conference providers.
|
ConferenceProvider.Builder |
type(String type)
The type of conference providers.
|
copy
applyMutation, build
ConferenceProvider.Builder arn(String arn)
The ARN of the newly created conference provider.
arn
- The ARN of the newly created conference provider.ConferenceProvider.Builder name(String name)
The name of the conference provider.
name
- The name of the conference provider.ConferenceProvider.Builder type(String type)
The type of conference providers.
type
- The type of conference providers.ConferenceProviderType
,
ConferenceProviderType
ConferenceProvider.Builder type(ConferenceProviderType type)
The type of conference providers.
type
- The type of conference providers.ConferenceProviderType
,
ConferenceProviderType
ConferenceProvider.Builder ipDialIn(IPDialIn ipDialIn)
The IP endpoint and protocol for calling.
ipDialIn
- The IP endpoint and protocol for calling.default ConferenceProvider.Builder ipDialIn(Consumer<IPDialIn.Builder> ipDialIn)
The IP endpoint and protocol for calling.
This is a convenience that creates an instance of theIPDialIn.Builder
avoiding the need to create
one manually via IPDialIn.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result is
passed to ipDialIn(IPDialIn)
.ipDialIn
- a consumer that will call methods on IPDialIn.Builder
ipDialIn(IPDialIn)
ConferenceProvider.Builder pstnDialIn(PSTNDialIn pstnDialIn)
The information for PSTN conferencing.
pstnDialIn
- The information for PSTN conferencing.default ConferenceProvider.Builder pstnDialIn(Consumer<PSTNDialIn.Builder> pstnDialIn)
The information for PSTN conferencing.
This is a convenience that creates an instance of thePSTNDialIn.Builder
avoiding the need to create
one manually via PSTNDialIn.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to pstnDialIn(PSTNDialIn)
.pstnDialIn
- a consumer that will call methods on PSTNDialIn.Builder
pstnDialIn(PSTNDialIn)
ConferenceProvider.Builder meetingSetting(MeetingSetting meetingSetting)
The meeting settings for the conference provider.
meetingSetting
- The meeting settings for the conference provider.default ConferenceProvider.Builder meetingSetting(Consumer<MeetingSetting.Builder> meetingSetting)
The meeting settings for the conference provider.
This is a convenience that creates an instance of theMeetingSetting.Builder
avoiding the need to
create one manually via MeetingSetting.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to meetingSetting(MeetingSetting)
.meetingSetting
- a consumer that will call methods on MeetingSetting.Builder
meetingSetting(MeetingSetting)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.