/**
* 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 AWS 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 AWS 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 AWS 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 AWS 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 AWS 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 AWS 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 AWS 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 AWS Region.
*/ inline DeleteDBInstanceAutomatedBackupRequest& WithDbiResourceId(const char* value) { SetDbiResourceId(value); return *this;} private: Aws::String m_dbiResourceId; bool m_dbiResourceIdHasBeenSet; }; } // namespace Model } // namespace RDS } // namespace Aws