/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKVoice { namespace Model { class UpdateVoiceProfileDomainResult { public: AWS_CHIMESDKVOICE_API UpdateVoiceProfileDomainResult(); AWS_CHIMESDKVOICE_API UpdateVoiceProfileDomainResult(const Aws::AmazonWebServiceResult& result); AWS_CHIMESDKVOICE_API UpdateVoiceProfileDomainResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The updated details of the voice profile domain.

*/ inline const VoiceProfileDomain& GetVoiceProfileDomain() const{ return m_voiceProfileDomain; } /** *

The updated details of the voice profile domain.

*/ inline void SetVoiceProfileDomain(const VoiceProfileDomain& value) { m_voiceProfileDomain = value; } /** *

The updated details of the voice profile domain.

*/ inline void SetVoiceProfileDomain(VoiceProfileDomain&& value) { m_voiceProfileDomain = std::move(value); } /** *

The updated details of the voice profile domain.

*/ inline UpdateVoiceProfileDomainResult& WithVoiceProfileDomain(const VoiceProfileDomain& value) { SetVoiceProfileDomain(value); return *this;} /** *

The updated details of the voice profile domain.

*/ inline UpdateVoiceProfileDomainResult& WithVoiceProfileDomain(VoiceProfileDomain&& value) { SetVoiceProfileDomain(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateVoiceProfileDomainResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateVoiceProfileDomainResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateVoiceProfileDomainResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: VoiceProfileDomain m_voiceProfileDomain; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws