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

An array containing the properties of a file transfer protocol-enabled server * with the ServerID you specified.

*/ inline const DescribedServer& GetServer() const{ return m_server; } /** *

An array containing the properties of a file transfer protocol-enabled server * with the ServerID you specified.

*/ inline void SetServer(const DescribedServer& value) { m_server = value; } /** *

An array containing the properties of a file transfer protocol-enabled server * with the ServerID you specified.

*/ inline void SetServer(DescribedServer&& value) { m_server = std::move(value); } /** *

An array containing the properties of a file transfer protocol-enabled server * with the ServerID you specified.

*/ inline DescribeServerResult& WithServer(const DescribedServer& value) { SetServer(value); return *this;} /** *

An array containing the properties of a file transfer protocol-enabled server * with the ServerID you specified.

*/ inline DescribeServerResult& WithServer(DescribedServer&& value) { SetServer(std::move(value)); return *this;} private: DescribedServer m_server; }; } // namespace Model } // namespace Transfer } // namespace Aws