/** * 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 DataSync { namespace Model { /** *

CreateLocationNfsResponse

See Also:

AWS * API Reference

*/ class AWS_DATASYNC_API CreateLocationNfsResult { public: CreateLocationNfsResult(); CreateLocationNfsResult(const Aws::AmazonWebServiceResult& result); CreateLocationNfsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

*/ inline const Aws::String& GetLocationArn() const{ return m_locationArn; } /** *

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

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

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

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

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

*/ inline void SetLocationArn(const char* value) { m_locationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

*/ inline CreateLocationNfsResult& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

*/ inline CreateLocationNfsResult& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the source NFS file system location that is * created.

*/ inline CreateLocationNfsResult& WithLocationArn(const char* value) { SetLocationArn(value); return *this;} private: Aws::String m_locationArn; }; } // namespace Model } // namespace DataSync } // namespace Aws