/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DeleteLocationSee Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the location to delete.
*/ inline const Aws::String& GetLocationArn() const{ return m_locationArn; } /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline bool LocationArnHasBeenSet() const { return m_locationArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline void SetLocationArn(const Aws::String& value) { m_locationArnHasBeenSet = true; m_locationArn = value; } /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline void SetLocationArn(Aws::String&& value) { m_locationArnHasBeenSet = true; m_locationArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline void SetLocationArn(const char* value) { m_locationArnHasBeenSet = true; m_locationArn.assign(value); } /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline DeleteLocationRequest& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline DeleteLocationRequest& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the location to delete.
*/ inline DeleteLocationRequest& WithLocationArn(const char* value) { SetLocationArn(value); return *this;} private: Aws::String m_locationArn; bool m_locationArnHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws