/** * 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/model/SipRule.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKVoice { namespace Model { class CreateSipRuleResult { public: AWS_CHIMESDKVOICE_API CreateSipRuleResult(); AWS_CHIMESDKVOICE_API CreateSipRuleResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_CHIMESDKVOICE_API CreateSipRuleResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The SIP rule information, including the rule ID, triggers, and target * applications.</p> */ inline const SipRule& GetSipRule() const{ return m_sipRule; } /** * <p>The SIP rule information, including the rule ID, triggers, and target * applications.</p> */ inline void SetSipRule(const SipRule& value) { m_sipRule = value; } /** * <p>The SIP rule information, including the rule ID, triggers, and target * applications.</p> */ inline void SetSipRule(SipRule&& value) { m_sipRule = std::move(value); } /** * <p>The SIP rule information, including the rule ID, triggers, and target * applications.</p> */ inline CreateSipRuleResult& WithSipRule(const SipRule& value) { SetSipRule(value); return *this;} /** * <p>The SIP rule information, including the rule ID, triggers, and target * applications.</p> */ inline CreateSipRuleResult& WithSipRule(SipRule&& value) { SetSipRule(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 CreateSipRuleResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateSipRuleResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateSipRuleResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: SipRule m_sipRule; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws