/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a CreateCacheSecurityGroup
* operation.See Also:
AWS
* API Reference
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A name for the cache security group. This value is stored as a lowercase * string.
Constraints: Must contain no more than 255 alphanumeric * characters. Cannot be the word "Default".
Example:
* mysecuritygroup
A description for the cache security group.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *A description for the cache security group.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *A description for the cache security group.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *A description for the cache security group.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *A description for the cache security group.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *A description for the cache security group.
*/ inline CreateCacheSecurityGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A description for the cache security group.
*/ inline CreateCacheSecurityGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A description for the cache security group.
*/ inline CreateCacheSecurityGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_cacheSecurityGroupName; bool m_cacheSecurityGroupNameHasBeenSet; Aws::String m_description; bool m_descriptionHasBeenSet; }; } // namespace Model } // namespace ElastiCache } // namespace Aws