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

The Amazon Resource Name (ARN) of the routing profile.

*/ inline const Aws::String& GetRoutingProfileArn() const{ return m_routingProfileArn; } /** *

The Amazon Resource Name (ARN) of the routing profile.

*/ inline void SetRoutingProfileArn(const Aws::String& value) { m_routingProfileArn = value; } /** *

The Amazon Resource Name (ARN) of the routing profile.

*/ inline void SetRoutingProfileArn(Aws::String&& value) { m_routingProfileArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the routing profile.

*/ inline void SetRoutingProfileArn(const char* value) { m_routingProfileArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the routing profile.

*/ inline CreateRoutingProfileResult& WithRoutingProfileArn(const Aws::String& value) { SetRoutingProfileArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the routing profile.

*/ inline CreateRoutingProfileResult& WithRoutingProfileArn(Aws::String&& value) { SetRoutingProfileArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the routing profile.

*/ inline CreateRoutingProfileResult& WithRoutingProfileArn(const char* value) { SetRoutingProfileArn(value); return *this;} /** *

The identifier of the routing profile.

*/ inline const Aws::String& GetRoutingProfileId() const{ return m_routingProfileId; } /** *

The identifier of the routing profile.

*/ inline void SetRoutingProfileId(const Aws::String& value) { m_routingProfileId = value; } /** *

The identifier of the routing profile.

*/ inline void SetRoutingProfileId(Aws::String&& value) { m_routingProfileId = std::move(value); } /** *

The identifier of the routing profile.

*/ inline void SetRoutingProfileId(const char* value) { m_routingProfileId.assign(value); } /** *

The identifier of the routing profile.

*/ inline CreateRoutingProfileResult& WithRoutingProfileId(const Aws::String& value) { SetRoutingProfileId(value); return *this;} /** *

The identifier of the routing profile.

*/ inline CreateRoutingProfileResult& WithRoutingProfileId(Aws::String&& value) { SetRoutingProfileId(std::move(value)); return *this;} /** *

The identifier of the routing profile.

*/ inline CreateRoutingProfileResult& WithRoutingProfileId(const char* value) { SetRoutingProfileId(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 CreateRoutingProfileResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateRoutingProfileResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateRoutingProfileResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_routingProfileArn; Aws::String m_routingProfileId; Aws::String m_requestId; }; } // namespace Model } // namespace Connect } // namespace Aws