/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Parameter input for the DeleteDBInstanceAutomatedBackup
* operation.See Also:
AWS
* API Reference
The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline const Aws::String& GetDbiResourceId() const{ return m_dbiResourceId; } /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline bool DbiResourceIdHasBeenSet() const { return m_dbiResourceIdHasBeenSet; } /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline void SetDbiResourceId(const Aws::String& value) { m_dbiResourceIdHasBeenSet = true; m_dbiResourceId = value; } /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline void SetDbiResourceId(Aws::String&& value) { m_dbiResourceIdHasBeenSet = true; m_dbiResourceId = std::move(value); } /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline void SetDbiResourceId(const char* value) { m_dbiResourceIdHasBeenSet = true; m_dbiResourceId.assign(value); } /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(const Aws::String& value) { SetDbiResourceId(value); return *this;} /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(Aws::String&& value) { SetDbiResourceId(std::move(value)); return *this;} /** *The identifier for the source DB instance, which can't be changed and which * is unique to an Amazon Web Services Region.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(const char* value) { SetDbiResourceId(value); return *this;} /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline const Aws::String& GetDBInstanceAutomatedBackupsArn() const{ return m_dBInstanceAutomatedBackupsArn; } /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline bool DBInstanceAutomatedBackupsArnHasBeenSet() const { return m_dBInstanceAutomatedBackupsArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline void SetDBInstanceAutomatedBackupsArn(const Aws::String& value) { m_dBInstanceAutomatedBackupsArnHasBeenSet = true; m_dBInstanceAutomatedBackupsArn = value; } /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline void SetDBInstanceAutomatedBackupsArn(Aws::String&& value) { m_dBInstanceAutomatedBackupsArnHasBeenSet = true; m_dBInstanceAutomatedBackupsArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline void SetDBInstanceAutomatedBackupsArn(const char* value) { m_dBInstanceAutomatedBackupsArnHasBeenSet = true; m_dBInstanceAutomatedBackupsArn.assign(value); } /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDBInstanceAutomatedBackupsArn(const Aws::String& value) { SetDBInstanceAutomatedBackupsArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDBInstanceAutomatedBackupsArn(Aws::String&& value) { SetDBInstanceAutomatedBackupsArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the automated backups to delete, for
* example,
* arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE
.
This setting doesn't apply to RDS Custom.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDBInstanceAutomatedBackupsArn(const char* value) { SetDBInstanceAutomatedBackupsArn(value); return *this;} private: Aws::String m_dbiResourceId; bool m_dbiResourceIdHasBeenSet = false; Aws::String m_dBInstanceAutomatedBackupsArn; bool m_dBInstanceAutomatedBackupsArnHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws