/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace ElastiCache { namespace Model { /** *

Represents the input of a CreateCacheParameterGroup * operation.

See Also:

AWS * API Reference

*/ class CreateCacheParameterGroupRequest : public ElastiCacheRequest { public: AWS_ELASTICACHE_API CreateCacheParameterGroupRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateCacheParameterGroup"; } AWS_ELASTICACHE_API Aws::String SerializePayload() const override; protected: AWS_ELASTICACHE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

A user-specified name for the cache parameter group.

*/ inline const Aws::String& GetCacheParameterGroupName() const{ return m_cacheParameterGroupName; } /** *

A user-specified name for the cache parameter group.

*/ inline bool CacheParameterGroupNameHasBeenSet() const { return m_cacheParameterGroupNameHasBeenSet; } /** *

A user-specified name for the cache parameter group.

*/ inline void SetCacheParameterGroupName(const Aws::String& value) { m_cacheParameterGroupNameHasBeenSet = true; m_cacheParameterGroupName = value; } /** *

A user-specified name for the cache parameter group.

*/ inline void SetCacheParameterGroupName(Aws::String&& value) { m_cacheParameterGroupNameHasBeenSet = true; m_cacheParameterGroupName = std::move(value); } /** *

A user-specified name for the cache parameter group.

*/ inline void SetCacheParameterGroupName(const char* value) { m_cacheParameterGroupNameHasBeenSet = true; m_cacheParameterGroupName.assign(value); } /** *

A user-specified name for the cache parameter group.

*/ inline CreateCacheParameterGroupRequest& WithCacheParameterGroupName(const Aws::String& value) { SetCacheParameterGroupName(value); return *this;} /** *

A user-specified name for the cache parameter group.

*/ inline CreateCacheParameterGroupRequest& WithCacheParameterGroupName(Aws::String&& value) { SetCacheParameterGroupName(std::move(value)); return *this;} /** *

A user-specified name for the cache parameter group.

*/ inline CreateCacheParameterGroupRequest& WithCacheParameterGroupName(const char* value) { SetCacheParameterGroupName(value); return *this;} /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline const Aws::String& GetCacheParameterGroupFamily() const{ return m_cacheParameterGroupFamily; } /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline bool CacheParameterGroupFamilyHasBeenSet() const { return m_cacheParameterGroupFamilyHasBeenSet; } /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline void SetCacheParameterGroupFamily(const Aws::String& value) { m_cacheParameterGroupFamilyHasBeenSet = true; m_cacheParameterGroupFamily = value; } /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline void SetCacheParameterGroupFamily(Aws::String&& value) { m_cacheParameterGroupFamilyHasBeenSet = true; m_cacheParameterGroupFamily = std::move(value); } /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline void SetCacheParameterGroupFamily(const char* value) { m_cacheParameterGroupFamilyHasBeenSet = true; m_cacheParameterGroupFamily.assign(value); } /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline CreateCacheParameterGroupRequest& WithCacheParameterGroupFamily(const Aws::String& value) { SetCacheParameterGroupFamily(value); return *this;} /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline CreateCacheParameterGroupRequest& WithCacheParameterGroupFamily(Aws::String&& value) { SetCacheParameterGroupFamily(std::move(value)); return *this;} /** *

The name of the cache parameter group family that the cache parameter group * can be used with.

Valid values are: memcached1.4 | * memcached1.5 | memcached1.6 | redis2.6 | * redis2.8 | redis3.2 | redis4.0 | * redis5.0 | redis6.x | redis7

*/ inline CreateCacheParameterGroupRequest& WithCacheParameterGroupFamily(const char* value) { SetCacheParameterGroupFamily(value); return *this;} /** *

A user-specified description for the cache parameter group.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A user-specified description for the cache parameter group.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A user-specified description for the cache parameter group.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A user-specified description for the cache parameter group.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A user-specified description for the cache parameter group.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A user-specified description for the cache parameter group.

*/ inline CreateCacheParameterGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A user-specified description for the cache parameter group.

*/ inline CreateCacheParameterGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A user-specified description for the cache parameter group.

*/ inline CreateCacheParameterGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline CreateCacheParameterGroupRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline CreateCacheParameterGroupRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline CreateCacheParameterGroupRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

A list of tags to be added to this resource. A tag is a key-value pair. A tag * key must be accompanied by a tag value, although null is accepted.

*/ inline CreateCacheParameterGroupRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_cacheParameterGroupName; bool m_cacheParameterGroupNameHasBeenSet = false; Aws::String m_cacheParameterGroupFamily; bool m_cacheParameterGroupFamilyHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace ElastiCache } // namespace Aws