/**
* 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 of the subnet group to be modified.
*/ inline const Aws::String& GetClusterSubnetGroupName() const{ return m_clusterSubnetGroupName; } /** *The name of the subnet group to be modified.
*/ inline bool ClusterSubnetGroupNameHasBeenSet() const { return m_clusterSubnetGroupNameHasBeenSet; } /** *The name of the subnet group to be modified.
*/ inline void SetClusterSubnetGroupName(const Aws::String& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = value; } /** *The name of the subnet group to be modified.
*/ inline void SetClusterSubnetGroupName(Aws::String&& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = std::move(value); } /** *The name of the subnet group to be modified.
*/ inline void SetClusterSubnetGroupName(const char* value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName.assign(value); } /** *The name of the subnet group to be modified.
*/ inline ModifyClusterSubnetGroupRequest& WithClusterSubnetGroupName(const Aws::String& value) { SetClusterSubnetGroupName(value); return *this;} /** *The name of the subnet group to be modified.
*/ inline ModifyClusterSubnetGroupRequest& WithClusterSubnetGroupName(Aws::String&& value) { SetClusterSubnetGroupName(std::move(value)); return *this;} /** *The name of the subnet group to be modified.
*/ inline ModifyClusterSubnetGroupRequest& WithClusterSubnetGroupName(const char* value) { SetClusterSubnetGroupName(value); return *this;} /** *A text description of the subnet group to be modified.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *A text description of the subnet group to be modified.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *A text description of the subnet group to be modified.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *A text description of the subnet group to be modified.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *A text description of the subnet group to be modified.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *A text description of the subnet group to be modified.
*/ inline ModifyClusterSubnetGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A text description of the subnet group to be modified.
*/ inline ModifyClusterSubnetGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A text description of the subnet group to be modified.
*/ inline ModifyClusterSubnetGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline const Aws::VectorAn array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline void SetSubnetIds(const Aws::VectorAn array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline void SetSubnetIds(Aws::VectorAn array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline ModifyClusterSubnetGroupRequest& WithSubnetIds(const Aws::VectorAn array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline ModifyClusterSubnetGroupRequest& WithSubnetIds(Aws::VectorAn array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline ModifyClusterSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline ModifyClusterSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a * single request.
*/ inline ModifyClusterSubnetGroupRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } private: Aws::String m_clusterSubnetGroupName; bool m_clusterSubnetGroupNameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Vector