/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that defines one launch group in a launch. A launch group is a
* variation of the feature that you are including in the launch.See
* Also:
AWS
* API Reference
A description of the launch group.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *A description of the launch group.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *A description of the launch group.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *A description of the launch group.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *A description of the launch group.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *A description of the launch group.
*/ inline LaunchGroup& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A description of the launch group.
*/ inline LaunchGroup& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A description of the launch group.
*/ inline LaunchGroup& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The feature variation for this launch group. This is a key-value pair.
*/ inline const Aws::MapThe feature variation for this launch group. This is a key-value pair.
*/ inline bool FeatureVariationsHasBeenSet() const { return m_featureVariationsHasBeenSet; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline void SetFeatureVariations(const Aws::MapThe feature variation for this launch group. This is a key-value pair.
*/ inline void SetFeatureVariations(Aws::MapThe feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& WithFeatureVariations(const Aws::MapThe feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& WithFeatureVariations(Aws::MapThe feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(const Aws::String& key, const Aws::String& value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(key, value); return *this; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(Aws::String&& key, const Aws::String& value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(std::move(key), value); return *this; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(const Aws::String& key, Aws::String&& value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(key, std::move(value)); return *this; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(Aws::String&& key, Aws::String&& value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(std::move(key), std::move(value)); return *this; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(const char* key, Aws::String&& value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(key, std::move(value)); return *this; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(Aws::String&& key, const char* value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(std::move(key), value); return *this; } /** *The feature variation for this launch group. This is a key-value pair.
*/ inline LaunchGroup& AddFeatureVariations(const char* key, const char* value) { m_featureVariationsHasBeenSet = true; m_featureVariations.emplace(key, value); return *this; } /** *The name of the launch group.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the launch group.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the launch group.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the launch group.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the launch group.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the launch group.
*/ inline LaunchGroup& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the launch group.
*/ inline LaunchGroup& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the launch group.
*/ inline LaunchGroup& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Map