/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to create a new dedicated IP pool.See Also:
AWS
* API Reference
The name of the dedicated IP pool.
*/ inline const Aws::String& GetPoolName() const{ return m_poolName; } /** *The name of the dedicated IP pool.
*/ inline bool PoolNameHasBeenSet() const { return m_poolNameHasBeenSet; } /** *The name of the dedicated IP pool.
*/ inline void SetPoolName(const Aws::String& value) { m_poolNameHasBeenSet = true; m_poolName = value; } /** *The name of the dedicated IP pool.
*/ inline void SetPoolName(Aws::String&& value) { m_poolNameHasBeenSet = true; m_poolName = std::move(value); } /** *The name of the dedicated IP pool.
*/ inline void SetPoolName(const char* value) { m_poolNameHasBeenSet = true; m_poolName.assign(value); } /** *The name of the dedicated IP pool.
*/ inline CreateDedicatedIpPoolRequest& WithPoolName(const Aws::String& value) { SetPoolName(value); return *this;} /** *The name of the dedicated IP pool.
*/ inline CreateDedicatedIpPoolRequest& WithPoolName(Aws::String&& value) { SetPoolName(std::move(value)); return *this;} /** *The name of the dedicated IP pool.
*/ inline CreateDedicatedIpPoolRequest& WithPoolName(const char* value) { SetPoolName(value); return *this;} /** *An object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline const Aws::VectorAn object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *An object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline void SetTags(const Aws::VectorAn object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline void SetTags(Aws::VectorAn object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline CreateDedicatedIpPoolRequest& WithTags(const Aws::VectorAn object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline CreateDedicatedIpPoolRequest& WithTags(Aws::VectorAn object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline CreateDedicatedIpPoolRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *An object that defines the tags (keys and values) that you want to associate * with the pool.
*/ inline CreateDedicatedIpPoolRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *The type of scaling mode.
*/ inline const ScalingMode& GetScalingMode() const{ return m_scalingMode; } /** *The type of scaling mode.
*/ inline bool ScalingModeHasBeenSet() const { return m_scalingModeHasBeenSet; } /** *The type of scaling mode.
*/ inline void SetScalingMode(const ScalingMode& value) { m_scalingModeHasBeenSet = true; m_scalingMode = value; } /** *The type of scaling mode.
*/ inline void SetScalingMode(ScalingMode&& value) { m_scalingModeHasBeenSet = true; m_scalingMode = std::move(value); } /** *The type of scaling mode.
*/ inline CreateDedicatedIpPoolRequest& WithScalingMode(const ScalingMode& value) { SetScalingMode(value); return *this;} /** *The type of scaling mode.
*/ inline CreateDedicatedIpPoolRequest& WithScalingMode(ScalingMode&& value) { SetScalingMode(std::move(value)); return *this;} private: Aws::String m_poolName; bool m_poolNameHasBeenSet = false; Aws::Vector