/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the additional configuration for the member
* account.See Also:
AWS
* API Reference
Indicates the name of the additional configuration that is set for the member * account.
*/ inline const OrgFeatureAdditionalConfiguration& GetName() const{ return m_name; } /** *Indicates the name of the additional configuration that is set for the member * account.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *Indicates the name of the additional configuration that is set for the member * account.
*/ inline void SetName(const OrgFeatureAdditionalConfiguration& value) { m_nameHasBeenSet = true; m_name = value; } /** *Indicates the name of the additional configuration that is set for the member * account.
*/ inline void SetName(OrgFeatureAdditionalConfiguration&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *Indicates the name of the additional configuration that is set for the member * account.
*/ inline MemberAdditionalConfigurationResult& WithName(const OrgFeatureAdditionalConfiguration& value) { SetName(value); return *this;} /** *Indicates the name of the additional configuration that is set for the member * account.
*/ inline MemberAdditionalConfigurationResult& WithName(OrgFeatureAdditionalConfiguration&& value) { SetName(std::move(value)); return *this;} /** *Indicates the status of the additional configuration that is set for the * member account.
*/ inline const FeatureStatus& GetStatus() const{ return m_status; } /** *Indicates the status of the additional configuration that is set for the * member account.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *Indicates the status of the additional configuration that is set for the * member account.
*/ inline void SetStatus(const FeatureStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *Indicates the status of the additional configuration that is set for the * member account.
*/ inline void SetStatus(FeatureStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *Indicates the status of the additional configuration that is set for the * member account.
*/ inline MemberAdditionalConfigurationResult& WithStatus(const FeatureStatus& value) { SetStatus(value); return *this;} /** *Indicates the status of the additional configuration that is set for the * member account.
*/ inline MemberAdditionalConfigurationResult& WithStatus(FeatureStatus&& value) { SetStatus(std::move(value)); return *this;} /** *The timestamp at which the additional configuration was set for the member * account. This is in UTC format.
*/ inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; } /** *The timestamp at which the additional configuration was set for the member * account. This is in UTC format.
*/ inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; } /** *The timestamp at which the additional configuration was set for the member * account. This is in UTC format.
*/ inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; } /** *The timestamp at which the additional configuration was set for the member * account. This is in UTC format.
*/ inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); } /** *The timestamp at which the additional configuration was set for the member * account. This is in UTC format.
*/ inline MemberAdditionalConfigurationResult& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;} /** *The timestamp at which the additional configuration was set for the member * account. This is in UTC format.
*/ inline MemberAdditionalConfigurationResult& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;} private: OrgFeatureAdditionalConfiguration m_name; bool m_nameHasBeenSet = false; FeatureStatus m_status; bool m_statusHasBeenSet = false; Aws::Utils::DateTime m_updatedAt; bool m_updatedAtHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws