/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of additional configurations which will be configured for the
* organization.See Also:
AWS
* API Reference
The name of the additional configuration that will be configured for the * organization.
*/ inline const OrgFeatureAdditionalConfiguration& GetName() const{ return m_name; } /** *The name of the additional configuration that will be configured for the * organization.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the additional configuration that will be configured for the * organization.
*/ inline void SetName(const OrgFeatureAdditionalConfiguration& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the additional configuration that will be configured for the * organization.
*/ inline void SetName(OrgFeatureAdditionalConfiguration&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the additional configuration that will be configured for the * organization.
*/ inline OrganizationAdditionalConfiguration& WithName(const OrgFeatureAdditionalConfiguration& value) { SetName(value); return *this;} /** *The name of the additional configuration that will be configured for the * organization.
*/ inline OrganizationAdditionalConfiguration& WithName(OrgFeatureAdditionalConfiguration&& value) { SetName(std::move(value)); return *this;} /** *The status of the additional configuration that will be configured for the * organization.
*/ inline const OrgFeatureStatus& GetAutoEnable() const{ return m_autoEnable; } /** *The status of the additional configuration that will be configured for the * organization.
*/ inline bool AutoEnableHasBeenSet() const { return m_autoEnableHasBeenSet; } /** *The status of the additional configuration that will be configured for the * organization.
*/ inline void SetAutoEnable(const OrgFeatureStatus& value) { m_autoEnableHasBeenSet = true; m_autoEnable = value; } /** *The status of the additional configuration that will be configured for the * organization.
*/ inline void SetAutoEnable(OrgFeatureStatus&& value) { m_autoEnableHasBeenSet = true; m_autoEnable = std::move(value); } /** *The status of the additional configuration that will be configured for the * organization.
*/ inline OrganizationAdditionalConfiguration& WithAutoEnable(const OrgFeatureStatus& value) { SetAutoEnable(value); return *this;} /** *The status of the additional configuration that will be configured for the * organization.
*/ inline OrganizationAdditionalConfiguration& WithAutoEnable(OrgFeatureStatus&& value) { SetAutoEnable(std::move(value)); return *this;} private: OrgFeatureAdditionalConfiguration m_name; bool m_nameHasBeenSet = false; OrgFeatureStatus m_autoEnable; bool m_autoEnableHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws