/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of features which will be configured for the
* organization.See Also:
AWS
* API Reference
The name of the feature that will be configured for the organization.
*/ inline const OrgFeature& GetName() const{ return m_name; } /** *The name of the feature that will be configured for the organization.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the feature that will be configured for the organization.
*/ inline void SetName(const OrgFeature& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the feature that will be configured for the organization.
*/ inline void SetName(OrgFeature&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the feature that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& WithName(const OrgFeature& value) { SetName(value); return *this;} /** *The name of the feature that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& WithName(OrgFeature&& value) { SetName(std::move(value)); return *this;} /** *The status of the feature that will be configured for the organization.
*/ inline const OrgFeatureStatus& GetAutoEnable() const{ return m_autoEnable; } /** *The status of the feature that will be configured for the organization.
*/ inline bool AutoEnableHasBeenSet() const { return m_autoEnableHasBeenSet; } /** *The status of the feature that will be configured for the organization.
*/ inline void SetAutoEnable(const OrgFeatureStatus& value) { m_autoEnableHasBeenSet = true; m_autoEnable = value; } /** *The status of the feature that will be configured for the organization.
*/ inline void SetAutoEnable(OrgFeatureStatus&& value) { m_autoEnableHasBeenSet = true; m_autoEnable = std::move(value); } /** *The status of the feature that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& WithAutoEnable(const OrgFeatureStatus& value) { SetAutoEnable(value); return *this;} /** *The status of the feature that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& WithAutoEnable(OrgFeatureStatus&& value) { SetAutoEnable(std::move(value)); return *this;} /** *The additional information that will be configured for the organization.
*/ inline const Aws::VectorThe additional information that will be configured for the organization.
*/ inline bool AdditionalConfigurationHasBeenSet() const { return m_additionalConfigurationHasBeenSet; } /** *The additional information that will be configured for the organization.
*/ inline void SetAdditionalConfiguration(const Aws::VectorThe additional information that will be configured for the organization.
*/ inline void SetAdditionalConfiguration(Aws::VectorThe additional information that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& WithAdditionalConfiguration(const Aws::VectorThe additional information that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& WithAdditionalConfiguration(Aws::VectorThe additional information that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& AddAdditionalConfiguration(const OrganizationAdditionalConfiguration& value) { m_additionalConfigurationHasBeenSet = true; m_additionalConfiguration.push_back(value); return *this; } /** *The additional information that will be configured for the organization.
*/ inline OrganizationFeatureConfiguration& AddAdditionalConfiguration(OrganizationAdditionalConfiguration&& value) { m_additionalConfigurationHasBeenSet = true; m_additionalConfiguration.push_back(std::move(value)); return *this; } private: OrgFeature m_name; bool m_nameHasBeenSet = false; OrgFeatureStatus m_autoEnable; bool m_autoEnableHasBeenSet = false; Aws::Vector