/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The database details of an Amazon RDS database.See Also:
AWS
* API Reference
The ID of an RDS DB instance.
*/ inline const Aws::String& GetInstanceIdentifier() const{ return m_instanceIdentifier; } /** *The ID of an RDS DB instance.
*/ inline bool InstanceIdentifierHasBeenSet() const { return m_instanceIdentifierHasBeenSet; } /** *The ID of an RDS DB instance.
*/ inline void SetInstanceIdentifier(const Aws::String& value) { m_instanceIdentifierHasBeenSet = true; m_instanceIdentifier = value; } /** *The ID of an RDS DB instance.
*/ inline void SetInstanceIdentifier(Aws::String&& value) { m_instanceIdentifierHasBeenSet = true; m_instanceIdentifier = std::move(value); } /** *The ID of an RDS DB instance.
*/ inline void SetInstanceIdentifier(const char* value) { m_instanceIdentifierHasBeenSet = true; m_instanceIdentifier.assign(value); } /** *The ID of an RDS DB instance.
*/ inline RDSDatabase& WithInstanceIdentifier(const Aws::String& value) { SetInstanceIdentifier(value); return *this;} /** *The ID of an RDS DB instance.
*/ inline RDSDatabase& WithInstanceIdentifier(Aws::String&& value) { SetInstanceIdentifier(std::move(value)); return *this;} /** *The ID of an RDS DB instance.
*/ inline RDSDatabase& WithInstanceIdentifier(const char* value) { SetInstanceIdentifier(value); return *this;} inline const Aws::String& GetDatabaseName() const{ return m_databaseName; } inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; } inline void SetDatabaseName(const Aws::String& value) { m_databaseNameHasBeenSet = true; m_databaseName = value; } inline void SetDatabaseName(Aws::String&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::move(value); } inline void SetDatabaseName(const char* value) { m_databaseNameHasBeenSet = true; m_databaseName.assign(value); } inline RDSDatabase& WithDatabaseName(const Aws::String& value) { SetDatabaseName(value); return *this;} inline RDSDatabase& WithDatabaseName(Aws::String&& value) { SetDatabaseName(std::move(value)); return *this;} inline RDSDatabase& WithDatabaseName(const char* value) { SetDatabaseName(value); return *this;} private: Aws::String m_instanceIdentifier; bool m_instanceIdentifierHasBeenSet = false; Aws::String m_databaseName; bool m_databaseNameHasBeenSet = false; }; } // namespace Model } // namespace MachineLearning } // namespace Aws