/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The name for the DB subnet group. This value is stored as a lowercase string. * You can't modify the default subnet group.
Constraints: Must match the * name of an existing DBSubnetGroup. Must not be default.
Example:
* mydbsubnetgroup
The description for the DB subnet group.
*/ inline const Aws::String& GetDBSubnetGroupDescription() const{ return m_dBSubnetGroupDescription; } /** *The description for the DB subnet group.
*/ inline bool DBSubnetGroupDescriptionHasBeenSet() const { return m_dBSubnetGroupDescriptionHasBeenSet; } /** *The description for the DB subnet group.
*/ inline void SetDBSubnetGroupDescription(const Aws::String& value) { m_dBSubnetGroupDescriptionHasBeenSet = true; m_dBSubnetGroupDescription = value; } /** *The description for the DB subnet group.
*/ inline void SetDBSubnetGroupDescription(Aws::String&& value) { m_dBSubnetGroupDescriptionHasBeenSet = true; m_dBSubnetGroupDescription = std::move(value); } /** *The description for the DB subnet group.
*/ inline void SetDBSubnetGroupDescription(const char* value) { m_dBSubnetGroupDescriptionHasBeenSet = true; m_dBSubnetGroupDescription.assign(value); } /** *The description for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithDBSubnetGroupDescription(const Aws::String& value) { SetDBSubnetGroupDescription(value); return *this;} /** *The description for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithDBSubnetGroupDescription(Aws::String&& value) { SetDBSubnetGroupDescription(std::move(value)); return *this;} /** *The description for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithDBSubnetGroupDescription(const char* value) { SetDBSubnetGroupDescription(value); return *this;} /** *The EC2 subnet IDs for the DB subnet group.
*/ inline const Aws::VectorThe EC2 subnet IDs for the DB subnet group.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *The EC2 subnet IDs for the DB subnet group.
*/ inline void SetSubnetIds(const Aws::VectorThe EC2 subnet IDs for the DB subnet group.
*/ inline void SetSubnetIds(Aws::VectorThe EC2 subnet IDs for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithSubnetIds(const Aws::VectorThe EC2 subnet IDs for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithSubnetIds(Aws::VectorThe EC2 subnet IDs for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *The EC2 subnet IDs for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *The EC2 subnet IDs for the DB subnet group.
*/ inline ModifyDBSubnetGroupRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } private: Aws::String m_dBSubnetGroupName; bool m_dBSubnetGroupNameHasBeenSet = false; Aws::String m_dBSubnetGroupDescription; bool m_dBSubnetGroupDescriptionHasBeenSet = false; Aws::Vector