/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace RDS { namespace Model { /** *

Parameter input for the DeleteDBInstanceAutomatedBackup * operation.

See Also:

AWS * API Reference

*/ 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: /** *

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