/** * 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 Transfer { namespace Model { class AWS_TRANSFER_API UpdateServerResult { public: UpdateServerResult(); UpdateServerResult(const Aws::AmazonWebServiceResult& result); UpdateServerResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

*/ inline const Aws::String& GetServerId() const{ return m_serverId; } /** *

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

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

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

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

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

*/ inline void SetServerId(const char* value) { m_serverId.assign(value); } /** *

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

*/ inline UpdateServerResult& WithServerId(const Aws::String& value) { SetServerId(value); return *this;} /** *

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

*/ inline UpdateServerResult& WithServerId(Aws::String&& value) { SetServerId(std::move(value)); return *this;} /** *

A system-assigned unique identifier for a file transfer protocol-enabled * server that the user account is assigned to.

*/ inline UpdateServerResult& WithServerId(const char* value) { SetServerId(value); return *this;} private: Aws::String m_serverId; }; } // namespace Model } // namespace Transfer } // namespace Aws