This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-datasync/include/aws/datasync/model/CreateLocationEfsResult.h

90 lines
2.6 KiB
C
Raw Normal View History

/**
* 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
{
/**
* <p>CreateLocationEfs</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationEfsResponse">AWS
* API Reference</a></p>
*/
class AWS_DATASYNC_API CreateLocationEfsResult
{
public:
CreateLocationEfsResult();
CreateLocationEfsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateLocationEfsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The Amazon Resource Name (ARN) of the Amazon EFS file system location that is
* created.</p>
*/
inline const Aws::String& GetLocationArn() const{ return m_locationArn; }
/**
* <p>The Amazon Resource Name (ARN) of the Amazon EFS 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 Amazon EFS 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 Amazon EFS 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 Amazon EFS file system location that is
* created.</p>
*/
inline CreateLocationEfsResult& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Amazon EFS file system location that is
* created.</p>
*/
inline CreateLocationEfsResult& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Amazon EFS file system location that is
* created.</p>
*/
inline CreateLocationEfsResult& WithLocationArn(const char* value) { SetLocationArn(value); return *this;}
private:
Aws::String m_locationArn;
};
} // namespace Model
} // namespace DataSync
} // namespace Aws