/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a ModifyCacheSubnetGroup
* operation.See Also:
AWS
* API Reference
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
The name for the cache subnet group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters or hyphens.
Example: mysubnetgroup
A description of the cache subnet group.
*/ inline const Aws::String& GetCacheSubnetGroupDescription() const{ return m_cacheSubnetGroupDescription; } /** *A description of the cache subnet group.
*/ inline bool CacheSubnetGroupDescriptionHasBeenSet() const { return m_cacheSubnetGroupDescriptionHasBeenSet; } /** *A description of the cache subnet group.
*/ inline void SetCacheSubnetGroupDescription(const Aws::String& value) { m_cacheSubnetGroupDescriptionHasBeenSet = true; m_cacheSubnetGroupDescription = value; } /** *A description of the cache subnet group.
*/ inline void SetCacheSubnetGroupDescription(Aws::String&& value) { m_cacheSubnetGroupDescriptionHasBeenSet = true; m_cacheSubnetGroupDescription = std::move(value); } /** *A description of the cache subnet group.
*/ inline void SetCacheSubnetGroupDescription(const char* value) { m_cacheSubnetGroupDescriptionHasBeenSet = true; m_cacheSubnetGroupDescription.assign(value); } /** *A description of the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& WithCacheSubnetGroupDescription(const Aws::String& value) { SetCacheSubnetGroupDescription(value); return *this;} /** *A description of the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& WithCacheSubnetGroupDescription(Aws::String&& value) { SetCacheSubnetGroupDescription(std::move(value)); return *this;} /** *A description of the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& WithCacheSubnetGroupDescription(const char* value) { SetCacheSubnetGroupDescription(value); return *this;} /** *The EC2 subnet IDs for the cache subnet group.
*/ inline const Aws::VectorThe EC2 subnet IDs for the cache subnet group.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *The EC2 subnet IDs for the cache subnet group.
*/ inline void SetSubnetIds(const Aws::VectorThe EC2 subnet IDs for the cache subnet group.
*/ inline void SetSubnetIds(Aws::VectorThe EC2 subnet IDs for the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& WithSubnetIds(const Aws::VectorThe EC2 subnet IDs for the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& WithSubnetIds(Aws::VectorThe EC2 subnet IDs for the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *The EC2 subnet IDs for the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *The EC2 subnet IDs for the cache subnet group.
*/ inline ModifyCacheSubnetGroupRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } private: Aws::String m_cacheSubnetGroupName; bool m_cacheSubnetGroupNameHasBeenSet = false; Aws::String m_cacheSubnetGroupDescription; bool m_cacheSubnetGroupDescriptionHasBeenSet = false; Aws::Vector