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

Represents the input of a CreateCacheParameterGroup * operation.

See Also:

AWS * API Reference

*/ class AWS_ELASTICACHE_API CreateCacheParameterGroupRequest : public ElastiCacheRequest { public: 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::String SerializePayload() const override; protected: 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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 | redis2.6 | redis2.8 | * redis3.2 | redis4.0 | redis5.0 |

*/ 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;} private: Aws::String m_cacheParameterGroupName; bool m_cacheParameterGroupNameHasBeenSet; Aws::String m_cacheParameterGroupFamily; bool m_cacheParameterGroupFamilyHasBeenSet; Aws::String m_description; bool m_descriptionHasBeenSet; }; } // namespace Model } // namespace ElastiCache } // namespace Aws