/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a DeleteCacheSubnetGroup
* operation.See Also:
AWS
* API Reference
The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline const Aws::String& GetCacheSubnetGroupName() const{ return m_cacheSubnetGroupName; } /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline bool CacheSubnetGroupNameHasBeenSet() const { return m_cacheSubnetGroupNameHasBeenSet; } /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline void SetCacheSubnetGroupName(const Aws::String& value) { m_cacheSubnetGroupNameHasBeenSet = true; m_cacheSubnetGroupName = value; } /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline void SetCacheSubnetGroupName(Aws::String&& value) { m_cacheSubnetGroupNameHasBeenSet = true; m_cacheSubnetGroupName = std::move(value); } /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline void SetCacheSubnetGroupName(const char* value) { m_cacheSubnetGroupNameHasBeenSet = true; m_cacheSubnetGroupName.assign(value); } /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline DeleteCacheSubnetGroupRequest& WithCacheSubnetGroupName(const Aws::String& value) { SetCacheSubnetGroupName(value); return *this;} /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline DeleteCacheSubnetGroupRequest& WithCacheSubnetGroupName(Aws::String&& value) { SetCacheSubnetGroupName(std::move(value)); return *this;} /** *The name of the cache subnet group to delete.
Constraints: Must * contain no more than 255 alphanumeric characters or hyphens.
*/ inline DeleteCacheSubnetGroupRequest& WithCacheSubnetGroupName(const char* value) { SetCacheSubnetGroupName(value); return *this;} private: Aws::String m_cacheSubnetGroupName; bool m_cacheSubnetGroupNameHasBeenSet = false; }; } // namespace Model } // namespace ElastiCache } // namespace Aws