/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/chime-sdk-voice/ChimeSDKVoice_EXPORTS.h> #include <aws/chime-sdk-voice/ChimeSDKVoiceRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace ChimeSDKVoice { namespace Model { /** */ class DeleteVoiceConnectorGroupRequest : public ChimeSDKVoiceRequest { public: AWS_CHIMESDKVOICE_API DeleteVoiceConnectorGroupRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteVoiceConnectorGroup"; } AWS_CHIMESDKVOICE_API Aws::String SerializePayload() const override; /** * <p>The Voice Connector Group ID.</p> */ inline const Aws::String& GetVoiceConnectorGroupId() const{ return m_voiceConnectorGroupId; } /** * <p>The Voice Connector Group ID.</p> */ inline bool VoiceConnectorGroupIdHasBeenSet() const { return m_voiceConnectorGroupIdHasBeenSet; } /** * <p>The Voice Connector Group ID.</p> */ inline void SetVoiceConnectorGroupId(const Aws::String& value) { m_voiceConnectorGroupIdHasBeenSet = true; m_voiceConnectorGroupId = value; } /** * <p>The Voice Connector Group ID.</p> */ inline void SetVoiceConnectorGroupId(Aws::String&& value) { m_voiceConnectorGroupIdHasBeenSet = true; m_voiceConnectorGroupId = std::move(value); } /** * <p>The Voice Connector Group ID.</p> */ inline void SetVoiceConnectorGroupId(const char* value) { m_voiceConnectorGroupIdHasBeenSet = true; m_voiceConnectorGroupId.assign(value); } /** * <p>The Voice Connector Group ID.</p> */ inline DeleteVoiceConnectorGroupRequest& WithVoiceConnectorGroupId(const Aws::String& value) { SetVoiceConnectorGroupId(value); return *this;} /** * <p>The Voice Connector Group ID.</p> */ inline DeleteVoiceConnectorGroupRequest& WithVoiceConnectorGroupId(Aws::String&& value) { SetVoiceConnectorGroupId(std::move(value)); return *this;} /** * <p>The Voice Connector Group ID.</p> */ inline DeleteVoiceConnectorGroupRequest& WithVoiceConnectorGroupId(const char* value) { SetVoiceConnectorGroupId(value); return *this;} private: Aws::String m_voiceConnectorGroupId; bool m_voiceConnectorGroupIdHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws