/**
* 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 Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace APIGateway
{
namespace Model
{
/**
* The input configuration for a canary deployment.
See Also:
* AWS
* API Reference
*/
class DeploymentCanarySettings
{
public:
AWS_APIGATEWAY_API DeploymentCanarySettings();
AWS_APIGATEWAY_API DeploymentCanarySettings(Aws::Utils::Json::JsonView jsonValue);
AWS_APIGATEWAY_API DeploymentCanarySettings& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_APIGATEWAY_API Aws::Utils::Json::JsonValue Jsonize() const;
///@{
/**
* The percentage (0.0-100.0) of traffic routed to the canary deployment.
*/
inline double GetPercentTraffic() const{ return m_percentTraffic; }
inline bool PercentTrafficHasBeenSet() const { return m_percentTrafficHasBeenSet; }
inline void SetPercentTraffic(double value) { m_percentTrafficHasBeenSet = true; m_percentTraffic = value; }
inline DeploymentCanarySettings& WithPercentTraffic(double value) { SetPercentTraffic(value); return *this;}
///@}
///@{
/**
* A stage variable overrides used for the canary release deployment. They can
* override existing stage variables or add new stage variables for the canary
* release deployment. These stage variables are represented as a string-to-string
* map between stage variable names and their values.
*/
inline const Aws::Map& GetStageVariableOverrides() const{ return m_stageVariableOverrides; }
inline bool StageVariableOverridesHasBeenSet() const { return m_stageVariableOverridesHasBeenSet; }
inline void SetStageVariableOverrides(const Aws::Map& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides = value; }
inline void SetStageVariableOverrides(Aws::Map&& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides = std::move(value); }
inline DeploymentCanarySettings& WithStageVariableOverrides(const Aws::Map& value) { SetStageVariableOverrides(value); return *this;}
inline DeploymentCanarySettings& WithStageVariableOverrides(Aws::Map&& value) { SetStageVariableOverrides(std::move(value)); return *this;}
inline DeploymentCanarySettings& AddStageVariableOverrides(const Aws::String& key, const Aws::String& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(key, value); return *this; }
inline DeploymentCanarySettings& AddStageVariableOverrides(Aws::String&& key, const Aws::String& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(std::move(key), value); return *this; }
inline DeploymentCanarySettings& AddStageVariableOverrides(const Aws::String& key, Aws::String&& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(key, std::move(value)); return *this; }
inline DeploymentCanarySettings& AddStageVariableOverrides(Aws::String&& key, Aws::String&& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(std::move(key), std::move(value)); return *this; }
inline DeploymentCanarySettings& AddStageVariableOverrides(const char* key, Aws::String&& value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(key, std::move(value)); return *this; }
inline DeploymentCanarySettings& AddStageVariableOverrides(Aws::String&& key, const char* value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(std::move(key), value); return *this; }
inline DeploymentCanarySettings& AddStageVariableOverrides(const char* key, const char* value) { m_stageVariableOverridesHasBeenSet = true; m_stageVariableOverrides.emplace(key, value); return *this; }
///@}
///@{
/**
* A Boolean flag to indicate whether the canary release deployment uses the
* stage cache or not.
*/
inline bool GetUseStageCache() const{ return m_useStageCache; }
inline bool UseStageCacheHasBeenSet() const { return m_useStageCacheHasBeenSet; }
inline void SetUseStageCache(bool value) { m_useStageCacheHasBeenSet = true; m_useStageCache = value; }
inline DeploymentCanarySettings& WithUseStageCache(bool value) { SetUseStageCache(value); return *this;}
///@}
private:
double m_percentTraffic;
bool m_percentTrafficHasBeenSet = false;
Aws::Map m_stageVariableOverrides;
bool m_stageVariableOverridesHasBeenSet = false;
bool m_useStageCache;
bool m_useStageCacheHasBeenSet = false;
};
} // namespace Model
} // namespace APIGateway
} // namespace Aws