/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to the delete project operation.See
* Also:
AWS
* API Reference
Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline DeleteProjectRequest& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline DeleteProjectRequest& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *Represents the Amazon Resource Name (ARN) of the Device Farm project to * delete.
*/ inline DeleteProjectRequest& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws