85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/datasync/DataSync_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DataSync
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_DATASYNC_API CreateLocationFsxWindowsResult
|
|
{
|
|
public:
|
|
CreateLocationFsxWindowsResult();
|
|
CreateLocationFsxWindowsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
CreateLocationFsxWindowsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline const Aws::String& GetLocationArn() const{ return m_locationArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline void SetLocationArn(const Aws::String& value) { m_locationArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline void SetLocationArn(Aws::String&& value) { m_locationArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline void SetLocationArn(const char* value) { m_locationArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline CreateLocationFsxWindowsResult& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline CreateLocationFsxWindowsResult& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows file system location
|
|
* that is created.</p>
|
|
*/
|
|
inline CreateLocationFsxWindowsResult& WithLocationArn(const char* value) { SetLocationArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_locationArn;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DataSync
|
|
} // namespace Aws
|