This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-rds/include/aws/rds/model/DeleteDBInstanceAutomatedBackupRequest.h

100 lines
3.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rds/RDS_EXPORTS.h>
#include <aws/rds/RDSRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace RDS
{
namespace Model
{
/**
* <p>Parameter input for the <code>DeleteDBInstanceAutomatedBackup</code>
* operation. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackupMessage">AWS
* API Reference</a></p>
*/
class AWS_RDS_API DeleteDBInstanceAutomatedBackupRequest : public RDSRequest
{
public:
DeleteDBInstanceAutomatedBackupRequest();
// 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 "DeleteDBInstanceAutomatedBackup"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline const Aws::String& GetDbiResourceId() const{ return m_dbiResourceId; }
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline bool DbiResourceIdHasBeenSet() const { return m_dbiResourceIdHasBeenSet; }
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline void SetDbiResourceId(const Aws::String& value) { m_dbiResourceIdHasBeenSet = true; m_dbiResourceId = value; }
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline void SetDbiResourceId(Aws::String&& value) { m_dbiResourceIdHasBeenSet = true; m_dbiResourceId = std::move(value); }
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline void SetDbiResourceId(const char* value) { m_dbiResourceIdHasBeenSet = true; m_dbiResourceId.assign(value); }
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(const Aws::String& value) { SetDbiResourceId(value); return *this;}
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(Aws::String&& value) { SetDbiResourceId(std::move(value)); return *this;}
/**
* <p>The identifier for the source DB instance, which can't be changed and which
* is unique to an AWS Region.</p>
*/
inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(const char* value) { SetDbiResourceId(value); return *this;}
private:
Aws::String m_dbiResourceId;
bool m_dbiResourceIdHasBeenSet;
};
} // namespace Model
} // namespace RDS
} // namespace Aws