/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ChimeSDKVoice { namespace Model { /** */ class DeleteVoiceProfileRequest : public ChimeSDKVoiceRequest { public: AWS_CHIMESDKVOICE_API DeleteVoiceProfileRequest(); // 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 "DeleteVoiceProfile"; } AWS_CHIMESDKVOICE_API Aws::String SerializePayload() const override; /** *

The voice profile ID.

*/ inline const Aws::String& GetVoiceProfileId() const{ return m_voiceProfileId; } /** *

The voice profile ID.

*/ inline bool VoiceProfileIdHasBeenSet() const { return m_voiceProfileIdHasBeenSet; } /** *

The voice profile ID.

*/ inline void SetVoiceProfileId(const Aws::String& value) { m_voiceProfileIdHasBeenSet = true; m_voiceProfileId = value; } /** *

The voice profile ID.

*/ inline void SetVoiceProfileId(Aws::String&& value) { m_voiceProfileIdHasBeenSet = true; m_voiceProfileId = std::move(value); } /** *

The voice profile ID.

*/ inline void SetVoiceProfileId(const char* value) { m_voiceProfileIdHasBeenSet = true; m_voiceProfileId.assign(value); } /** *

The voice profile ID.

*/ inline DeleteVoiceProfileRequest& WithVoiceProfileId(const Aws::String& value) { SetVoiceProfileId(value); return *this;} /** *

The voice profile ID.

*/ inline DeleteVoiceProfileRequest& WithVoiceProfileId(Aws::String&& value) { SetVoiceProfileId(std::move(value)); return *this;} /** *

The voice profile ID.

*/ inline DeleteVoiceProfileRequest& WithVoiceProfileId(const char* value) { SetVoiceProfileId(value); return *this;} private: Aws::String m_voiceProfileId; bool m_voiceProfileIdHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws