/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input to ModifyDBSubnetGroup.See Also:
* AWS
* API Reference
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The name for the 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: mySubnetgroup
The description for the subnet group.
*/ inline const Aws::String& GetDBSubnetGroupDescription() const{ return m_dBSubnetGroupDescription; } /** *The description for the subnet group.
*/ inline bool DBSubnetGroupDescriptionHasBeenSet() const { return m_dBSubnetGroupDescriptionHasBeenSet; } /** *The description for the subnet group.
*/ inline void SetDBSubnetGroupDescription(const Aws::String& value) { m_dBSubnetGroupDescriptionHasBeenSet = true; m_dBSubnetGroupDescription = value; } /** *The description for the subnet group.
*/ inline void SetDBSubnetGroupDescription(Aws::String&& value) { m_dBSubnetGroupDescriptionHasBeenSet = true; m_dBSubnetGroupDescription = std::move(value); } /** *The description for the subnet group.
*/ inline void SetDBSubnetGroupDescription(const char* value) { m_dBSubnetGroupDescriptionHasBeenSet = true; m_dBSubnetGroupDescription.assign(value); } /** *The description for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithDBSubnetGroupDescription(const Aws::String& value) { SetDBSubnetGroupDescription(value); return *this;} /** *The description for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithDBSubnetGroupDescription(Aws::String&& value) { SetDBSubnetGroupDescription(std::move(value)); return *this;} /** *The description for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithDBSubnetGroupDescription(const char* value) { SetDBSubnetGroupDescription(value); return *this;} /** *The Amazon EC2 subnet IDs for the subnet group.
*/ inline const Aws::VectorThe Amazon EC2 subnet IDs for the subnet group.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *The Amazon EC2 subnet IDs for the subnet group.
*/ inline void SetSubnetIds(const Aws::VectorThe Amazon EC2 subnet IDs for the subnet group.
*/ inline void SetSubnetIds(Aws::VectorThe Amazon EC2 subnet IDs for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithSubnetIds(const Aws::VectorThe Amazon EC2 subnet IDs for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& WithSubnetIds(Aws::VectorThe Amazon EC2 subnet IDs for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *The Amazon EC2 subnet IDs for the subnet group.
*/ inline ModifyDBSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *The Amazon EC2 subnet IDs for the 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