94 lines
3.1 KiB
C++
94 lines
3.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cloudhsmv2/CloudHSMV2_EXPORTS.h>
|
|
#include <aws/cloudhsmv2/CloudHSMV2Request.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CloudHSMV2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CLOUDHSMV2_API DeleteBackupRequest : public CloudHSMV2Request
|
|
{
|
|
public:
|
|
DeleteBackupRequest();
|
|
|
|
// 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 "DeleteBackup"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline const Aws::String& GetBackupId() const{ return m_backupId; }
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline bool BackupIdHasBeenSet() const { return m_backupIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline void SetBackupId(const Aws::String& value) { m_backupIdHasBeenSet = true; m_backupId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline void SetBackupId(Aws::String&& value) { m_backupIdHasBeenSet = true; m_backupId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline void SetBackupId(const char* value) { m_backupIdHasBeenSet = true; m_backupId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline DeleteBackupRequest& WithBackupId(const Aws::String& value) { SetBackupId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline DeleteBackupRequest& WithBackupId(Aws::String&& value) { SetBackupId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the
|
|
* <a>DescribeBackups</a> operation.</p>
|
|
*/
|
|
inline DeleteBackupRequest& WithBackupId(const char* value) { SetBackupId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_backupId;
|
|
bool m_backupIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CloudHSMV2
|
|
} // namespace Aws
|