/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include CreateLocationSmbResponseSee Also:
AWS
* API Reference
The ARN of the SMB location that you created.
*/ inline const Aws::String& GetLocationArn() const{ return m_locationArn; } /** *The ARN of the SMB location that you created.
*/ inline void SetLocationArn(const Aws::String& value) { m_locationArn = value; } /** *The ARN of the SMB location that you created.
*/ inline void SetLocationArn(Aws::String&& value) { m_locationArn = std::move(value); } /** *The ARN of the SMB location that you created.
*/ inline void SetLocationArn(const char* value) { m_locationArn.assign(value); } /** *The ARN of the SMB location that you created.
*/ inline CreateLocationSmbResult& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;} /** *The ARN of the SMB location that you created.
*/ inline CreateLocationSmbResult& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;} /** *The ARN of the SMB location that you created.
*/ inline CreateLocationSmbResult& WithLocationArn(const char* value) { SetLocationArn(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateLocationSmbResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateLocationSmbResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateLocationSmbResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_locationArn; Aws::String m_requestId; }; } // namespace Model } // namespace DataSync } // namespace Aws