/** * 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 CreateAgentStatusResult { public: AWS_CONNECT_API CreateAgentStatusResult(); AWS_CONNECT_API CreateAgentStatusResult(const Aws::AmazonWebServiceResult& result); AWS_CONNECT_API CreateAgentStatusResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the agent status.

*/ inline const Aws::String& GetAgentStatusARN() const{ return m_agentStatusARN; } /** *

The Amazon Resource Name (ARN) of the agent status.

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

The Amazon Resource Name (ARN) of the agent status.

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

The Amazon Resource Name (ARN) of the agent status.

*/ inline void SetAgentStatusARN(const char* value) { m_agentStatusARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the agent status.

*/ inline CreateAgentStatusResult& WithAgentStatusARN(const Aws::String& value) { SetAgentStatusARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the agent status.

*/ inline CreateAgentStatusResult& WithAgentStatusARN(Aws::String&& value) { SetAgentStatusARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the agent status.

*/ inline CreateAgentStatusResult& WithAgentStatusARN(const char* value) { SetAgentStatusARN(value); return *this;} /** *

The identifier of the agent status.

*/ inline const Aws::String& GetAgentStatusId() const{ return m_agentStatusId; } /** *

The identifier of the agent status.

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

The identifier of the agent status.

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

The identifier of the agent status.

*/ inline void SetAgentStatusId(const char* value) { m_agentStatusId.assign(value); } /** *

The identifier of the agent status.

*/ inline CreateAgentStatusResult& WithAgentStatusId(const Aws::String& value) { SetAgentStatusId(value); return *this;} /** *

The identifier of the agent status.

*/ inline CreateAgentStatusResult& WithAgentStatusId(Aws::String&& value) { SetAgentStatusId(std::move(value)); return *this;} /** *

The identifier of the agent status.

*/ inline CreateAgentStatusResult& WithAgentStatusId(const char* value) { SetAgentStatusId(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 CreateAgentStatusResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateAgentStatusResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateAgentStatusResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_agentStatusARN; Aws::String m_agentStatusId; Aws::String m_requestId; }; } // namespace Model } // namespace Connect } // namespace Aws