/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the features for the member account.See
* Also:
AWS
* API Reference
The name of the feature.
*/ inline const OrgFeature& GetName() const{ return m_name; } /** *The name of the feature.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the feature.
*/ inline void SetName(const OrgFeature& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the feature.
*/ inline void SetName(OrgFeature&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the feature.
*/ inline MemberFeaturesConfiguration& WithName(const OrgFeature& value) { SetName(value); return *this;} /** *The name of the feature.
*/ inline MemberFeaturesConfiguration& WithName(OrgFeature&& value) { SetName(std::move(value)); return *this;} /** *The status of the feature.
*/ inline const FeatureStatus& GetStatus() const{ return m_status; } /** *The status of the feature.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The status of the feature.
*/ inline void SetStatus(const FeatureStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The status of the feature.
*/ inline void SetStatus(FeatureStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The status of the feature.
*/ inline MemberFeaturesConfiguration& WithStatus(const FeatureStatus& value) { SetStatus(value); return *this;} /** *The status of the feature.
*/ inline MemberFeaturesConfiguration& WithStatus(FeatureStatus&& value) { SetStatus(std::move(value)); return *this;} /** *Additional configuration of the feature for the member account.
*/ inline const Aws::VectorAdditional configuration of the feature for the member account.
*/ inline bool AdditionalConfigurationHasBeenSet() const { return m_additionalConfigurationHasBeenSet; } /** *Additional configuration of the feature for the member account.
*/ inline void SetAdditionalConfiguration(const Aws::VectorAdditional configuration of the feature for the member account.
*/ inline void SetAdditionalConfiguration(Aws::VectorAdditional configuration of the feature for the member account.
*/ inline MemberFeaturesConfiguration& WithAdditionalConfiguration(const Aws::VectorAdditional configuration of the feature for the member account.
*/ inline MemberFeaturesConfiguration& WithAdditionalConfiguration(Aws::VectorAdditional configuration of the feature for the member account.
*/ inline MemberFeaturesConfiguration& AddAdditionalConfiguration(const MemberAdditionalConfiguration& value) { m_additionalConfigurationHasBeenSet = true; m_additionalConfiguration.push_back(value); return *this; } /** *Additional configuration of the feature for the member account.
*/ inline MemberFeaturesConfiguration& AddAdditionalConfiguration(MemberAdditionalConfiguration&& value) { m_additionalConfigurationHasBeenSet = true; m_additionalConfiguration.push_back(std::move(value)); return *this; } private: OrgFeature m_name; bool m_nameHasBeenSet = false; FeatureStatus m_status; bool m_statusHasBeenSet = false; Aws::Vector