/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ConfigService { namespace Model { /** *

An organization config rule that has information about config rules that AWS * Config creates in member accounts.

See Also:

AWS * API Reference

*/ class AWS_CONFIGSERVICE_API OrganizationConfigRule { public: OrganizationConfigRule(); OrganizationConfigRule(Aws::Utils::Json::JsonView jsonValue); OrganizationConfigRule& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name that you assign to organization config rule.

*/ inline const Aws::String& GetOrganizationConfigRuleName() const{ return m_organizationConfigRuleName; } /** *

The name that you assign to organization config rule.

*/ inline bool OrganizationConfigRuleNameHasBeenSet() const { return m_organizationConfigRuleNameHasBeenSet; } /** *

The name that you assign to organization config rule.

*/ inline void SetOrganizationConfigRuleName(const Aws::String& value) { m_organizationConfigRuleNameHasBeenSet = true; m_organizationConfigRuleName = value; } /** *

The name that you assign to organization config rule.

*/ inline void SetOrganizationConfigRuleName(Aws::String&& value) { m_organizationConfigRuleNameHasBeenSet = true; m_organizationConfigRuleName = std::move(value); } /** *

The name that you assign to organization config rule.

*/ inline void SetOrganizationConfigRuleName(const char* value) { m_organizationConfigRuleNameHasBeenSet = true; m_organizationConfigRuleName.assign(value); } /** *

The name that you assign to organization config rule.

*/ inline OrganizationConfigRule& WithOrganizationConfigRuleName(const Aws::String& value) { SetOrganizationConfigRuleName(value); return *this;} /** *

The name that you assign to organization config rule.

*/ inline OrganizationConfigRule& WithOrganizationConfigRuleName(Aws::String&& value) { SetOrganizationConfigRuleName(std::move(value)); return *this;} /** *

The name that you assign to organization config rule.

*/ inline OrganizationConfigRule& WithOrganizationConfigRuleName(const char* value) { SetOrganizationConfigRuleName(value); return *this;} /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline const Aws::String& GetOrganizationConfigRuleArn() const{ return m_organizationConfigRuleArn; } /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline bool OrganizationConfigRuleArnHasBeenSet() const { return m_organizationConfigRuleArnHasBeenSet; } /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline void SetOrganizationConfigRuleArn(const Aws::String& value) { m_organizationConfigRuleArnHasBeenSet = true; m_organizationConfigRuleArn = value; } /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline void SetOrganizationConfigRuleArn(Aws::String&& value) { m_organizationConfigRuleArnHasBeenSet = true; m_organizationConfigRuleArn = std::move(value); } /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline void SetOrganizationConfigRuleArn(const char* value) { m_organizationConfigRuleArnHasBeenSet = true; m_organizationConfigRuleArn.assign(value); } /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline OrganizationConfigRule& WithOrganizationConfigRuleArn(const Aws::String& value) { SetOrganizationConfigRuleArn(value); return *this;} /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline OrganizationConfigRule& WithOrganizationConfigRuleArn(Aws::String&& value) { SetOrganizationConfigRuleArn(std::move(value)); return *this;} /** *

Amazon Resource Name (ARN) of organization config rule.

*/ inline OrganizationConfigRule& WithOrganizationConfigRuleArn(const char* value) { SetOrganizationConfigRuleArn(value); return *this;} /** *

An OrganizationManagedRuleMetadata object.

*/ inline const OrganizationManagedRuleMetadata& GetOrganizationManagedRuleMetadata() const{ return m_organizationManagedRuleMetadata; } /** *

An OrganizationManagedRuleMetadata object.

*/ inline bool OrganizationManagedRuleMetadataHasBeenSet() const { return m_organizationManagedRuleMetadataHasBeenSet; } /** *

An OrganizationManagedRuleMetadata object.

*/ inline void SetOrganizationManagedRuleMetadata(const OrganizationManagedRuleMetadata& value) { m_organizationManagedRuleMetadataHasBeenSet = true; m_organizationManagedRuleMetadata = value; } /** *

An OrganizationManagedRuleMetadata object.

*/ inline void SetOrganizationManagedRuleMetadata(OrganizationManagedRuleMetadata&& value) { m_organizationManagedRuleMetadataHasBeenSet = true; m_organizationManagedRuleMetadata = std::move(value); } /** *

An OrganizationManagedRuleMetadata object.

*/ inline OrganizationConfigRule& WithOrganizationManagedRuleMetadata(const OrganizationManagedRuleMetadata& value) { SetOrganizationManagedRuleMetadata(value); return *this;} /** *

An OrganizationManagedRuleMetadata object.

*/ inline OrganizationConfigRule& WithOrganizationManagedRuleMetadata(OrganizationManagedRuleMetadata&& value) { SetOrganizationManagedRuleMetadata(std::move(value)); return *this;} /** *

An OrganizationCustomRuleMetadata object.

*/ inline const OrganizationCustomRuleMetadata& GetOrganizationCustomRuleMetadata() const{ return m_organizationCustomRuleMetadata; } /** *

An OrganizationCustomRuleMetadata object.

*/ inline bool OrganizationCustomRuleMetadataHasBeenSet() const { return m_organizationCustomRuleMetadataHasBeenSet; } /** *

An OrganizationCustomRuleMetadata object.

*/ inline void SetOrganizationCustomRuleMetadata(const OrganizationCustomRuleMetadata& value) { m_organizationCustomRuleMetadataHasBeenSet = true; m_organizationCustomRuleMetadata = value; } /** *

An OrganizationCustomRuleMetadata object.

*/ inline void SetOrganizationCustomRuleMetadata(OrganizationCustomRuleMetadata&& value) { m_organizationCustomRuleMetadataHasBeenSet = true; m_organizationCustomRuleMetadata = std::move(value); } /** *

An OrganizationCustomRuleMetadata object.

*/ inline OrganizationConfigRule& WithOrganizationCustomRuleMetadata(const OrganizationCustomRuleMetadata& value) { SetOrganizationCustomRuleMetadata(value); return *this;} /** *

An OrganizationCustomRuleMetadata object.

*/ inline OrganizationConfigRule& WithOrganizationCustomRuleMetadata(OrganizationCustomRuleMetadata&& value) { SetOrganizationCustomRuleMetadata(std::move(value)); return *this;} /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline const Aws::Vector& GetExcludedAccounts() const{ return m_excludedAccounts; } /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline bool ExcludedAccountsHasBeenSet() const { return m_excludedAccountsHasBeenSet; } /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline void SetExcludedAccounts(const Aws::Vector& value) { m_excludedAccountsHasBeenSet = true; m_excludedAccounts = value; } /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline void SetExcludedAccounts(Aws::Vector&& value) { m_excludedAccountsHasBeenSet = true; m_excludedAccounts = std::move(value); } /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline OrganizationConfigRule& WithExcludedAccounts(const Aws::Vector& value) { SetExcludedAccounts(value); return *this;} /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline OrganizationConfigRule& WithExcludedAccounts(Aws::Vector&& value) { SetExcludedAccounts(std::move(value)); return *this;} /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline OrganizationConfigRule& AddExcludedAccounts(const Aws::String& value) { m_excludedAccountsHasBeenSet = true; m_excludedAccounts.push_back(value); return *this; } /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline OrganizationConfigRule& AddExcludedAccounts(Aws::String&& value) { m_excludedAccountsHasBeenSet = true; m_excludedAccounts.push_back(std::move(value)); return *this; } /** *

A comma-separated list of accounts excluded from organization config * rule.

*/ inline OrganizationConfigRule& AddExcludedAccounts(const char* value) { m_excludedAccountsHasBeenSet = true; m_excludedAccounts.push_back(value); return *this; } /** *

The timestamp of the last update.

*/ inline const Aws::Utils::DateTime& GetLastUpdateTime() const{ return m_lastUpdateTime; } /** *

The timestamp of the last update.

*/ inline bool LastUpdateTimeHasBeenSet() const { return m_lastUpdateTimeHasBeenSet; } /** *

The timestamp of the last update.

*/ inline void SetLastUpdateTime(const Aws::Utils::DateTime& value) { m_lastUpdateTimeHasBeenSet = true; m_lastUpdateTime = value; } /** *

The timestamp of the last update.

*/ inline void SetLastUpdateTime(Aws::Utils::DateTime&& value) { m_lastUpdateTimeHasBeenSet = true; m_lastUpdateTime = std::move(value); } /** *

The timestamp of the last update.

*/ inline OrganizationConfigRule& WithLastUpdateTime(const Aws::Utils::DateTime& value) { SetLastUpdateTime(value); return *this;} /** *

The timestamp of the last update.

*/ inline OrganizationConfigRule& WithLastUpdateTime(Aws::Utils::DateTime&& value) { SetLastUpdateTime(std::move(value)); return *this;} private: Aws::String m_organizationConfigRuleName; bool m_organizationConfigRuleNameHasBeenSet; Aws::String m_organizationConfigRuleArn; bool m_organizationConfigRuleArnHasBeenSet; OrganizationManagedRuleMetadata m_organizationManagedRuleMetadata; bool m_organizationManagedRuleMetadataHasBeenSet; OrganizationCustomRuleMetadata m_organizationCustomRuleMetadata; bool m_organizationCustomRuleMetadataHasBeenSet; Aws::Vector m_excludedAccounts; bool m_excludedAccountsHasBeenSet; Aws::Utils::DateTime m_lastUpdateTime; bool m_lastUpdateTimeHasBeenSet; }; } // namespace Model } // namespace ConfigService } // namespace Aws