86 lines
2.8 KiB
C++
86 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/rekognition/Rekognition_EXPORTS.h>
|
|
#include <aws/rekognition/RekognitionRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Rekognition
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_REKOGNITION_API DeleteProjectRequest : public RekognitionRequest
|
|
{
|
|
public:
|
|
DeleteProjectRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "DeleteProject"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline const Aws::String& GetProjectArn() const{ return m_projectArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline bool ProjectArnHasBeenSet() const { return m_projectArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline void SetProjectArn(const Aws::String& value) { m_projectArnHasBeenSet = true; m_projectArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline void SetProjectArn(Aws::String&& value) { m_projectArnHasBeenSet = true; m_projectArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline void SetProjectArn(const char* value) { m_projectArnHasBeenSet = true; m_projectArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline DeleteProjectRequest& WithProjectArn(const Aws::String& value) { SetProjectArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline DeleteProjectRequest& WithProjectArn(Aws::String&& value) { SetProjectArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the project that you want to delete.</p>
|
|
*/
|
|
inline DeleteProjectRequest& WithProjectArn(const char* value) { SetProjectArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_projectArn;
|
|
bool m_projectArnHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Rekognition
|
|
} // namespace Aws
|