/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An entity that provides a conferencing solution. Alexa for Business acts as
* the voice interface and mediator that connects users to their preferred
* conference provider. Examples of conference providers include Amazon Chime,
* Zoom, Cisco, and Polycom. See Also:
AWS
* API Reference
The ARN of the newly created conference provider.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The ARN of the newly created conference provider.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The ARN of the newly created conference provider.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The ARN of the newly created conference provider.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The ARN of the newly created conference provider.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The ARN of the newly created conference provider.
*/ inline ConferenceProvider& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The ARN of the newly created conference provider.
*/ inline ConferenceProvider& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The ARN of the newly created conference provider.
*/ inline ConferenceProvider& WithArn(const char* value) { SetArn(value); return *this;} /** *The name of the conference provider.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the conference provider.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the conference provider.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the conference provider.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the conference provider.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the conference provider.
*/ inline ConferenceProvider& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the conference provider.
*/ inline ConferenceProvider& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the conference provider.
*/ inline ConferenceProvider& WithName(const char* value) { SetName(value); return *this;} /** *The type of conference providers.
*/ inline const ConferenceProviderType& GetType() const{ return m_type; } /** *The type of conference providers.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of conference providers.
*/ inline void SetType(const ConferenceProviderType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of conference providers.
*/ inline void SetType(ConferenceProviderType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of conference providers.
*/ inline ConferenceProvider& WithType(const ConferenceProviderType& value) { SetType(value); return *this;} /** *The type of conference providers.
*/ inline ConferenceProvider& WithType(ConferenceProviderType&& value) { SetType(std::move(value)); return *this;} /** *The IP endpoint and protocol for calling.
*/ inline const IPDialIn& GetIPDialIn() const{ return m_iPDialIn; } /** *The IP endpoint and protocol for calling.
*/ inline bool IPDialInHasBeenSet() const { return m_iPDialInHasBeenSet; } /** *The IP endpoint and protocol for calling.
*/ inline void SetIPDialIn(const IPDialIn& value) { m_iPDialInHasBeenSet = true; m_iPDialIn = value; } /** *The IP endpoint and protocol for calling.
*/ inline void SetIPDialIn(IPDialIn&& value) { m_iPDialInHasBeenSet = true; m_iPDialIn = std::move(value); } /** *The IP endpoint and protocol for calling.
*/ inline ConferenceProvider& WithIPDialIn(const IPDialIn& value) { SetIPDialIn(value); return *this;} /** *The IP endpoint and protocol for calling.
*/ inline ConferenceProvider& WithIPDialIn(IPDialIn&& value) { SetIPDialIn(std::move(value)); return *this;} /** *The information for PSTN conferencing.
*/ inline const PSTNDialIn& GetPSTNDialIn() const{ return m_pSTNDialIn; } /** *The information for PSTN conferencing.
*/ inline bool PSTNDialInHasBeenSet() const { return m_pSTNDialInHasBeenSet; } /** *The information for PSTN conferencing.
*/ inline void SetPSTNDialIn(const PSTNDialIn& value) { m_pSTNDialInHasBeenSet = true; m_pSTNDialIn = value; } /** *The information for PSTN conferencing.
*/ inline void SetPSTNDialIn(PSTNDialIn&& value) { m_pSTNDialInHasBeenSet = true; m_pSTNDialIn = std::move(value); } /** *The information for PSTN conferencing.
*/ inline ConferenceProvider& WithPSTNDialIn(const PSTNDialIn& value) { SetPSTNDialIn(value); return *this;} /** *The information for PSTN conferencing.
*/ inline ConferenceProvider& WithPSTNDialIn(PSTNDialIn&& value) { SetPSTNDialIn(std::move(value)); return *this;} /** *The meeting settings for the conference provider.
*/ inline const MeetingSetting& GetMeetingSetting() const{ return m_meetingSetting; } /** *The meeting settings for the conference provider.
*/ inline bool MeetingSettingHasBeenSet() const { return m_meetingSettingHasBeenSet; } /** *The meeting settings for the conference provider.
*/ inline void SetMeetingSetting(const MeetingSetting& value) { m_meetingSettingHasBeenSet = true; m_meetingSetting = value; } /** *The meeting settings for the conference provider.
*/ inline void SetMeetingSetting(MeetingSetting&& value) { m_meetingSettingHasBeenSet = true; m_meetingSetting = std::move(value); } /** *The meeting settings for the conference provider.
*/ inline ConferenceProvider& WithMeetingSetting(const MeetingSetting& value) { SetMeetingSetting(value); return *this;} /** *The meeting settings for the conference provider.
*/ inline ConferenceProvider& WithMeetingSetting(MeetingSetting&& value) { SetMeetingSetting(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; ConferenceProviderType m_type; bool m_typeHasBeenSet = false; IPDialIn m_iPDialIn; bool m_iPDialInHasBeenSet = false; PSTNDialIn m_pSTNDialIn; bool m_pSTNDialInHasBeenSet = false; MeetingSetting m_meetingSetting; bool m_meetingSettingHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws