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

Contains information about the effect that Organizations has on a policy * simulation.

See Also:

AWS * API Reference

*/ class OrganizationsDecisionDetail { public: AWS_IAM_API OrganizationsDecisionDetail(); AWS_IAM_API OrganizationsDecisionDetail(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_IAM_API OrganizationsDecisionDetail& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_IAM_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_IAM_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

Specifies whether the simulated operation is allowed by the Organizations * service control policies that impact the simulated user's account.

*/ inline bool GetAllowedByOrganizations() const{ return m_allowedByOrganizations; } /** *

Specifies whether the simulated operation is allowed by the Organizations * service control policies that impact the simulated user's account.

*/ inline bool AllowedByOrganizationsHasBeenSet() const { return m_allowedByOrganizationsHasBeenSet; } /** *

Specifies whether the simulated operation is allowed by the Organizations * service control policies that impact the simulated user's account.

*/ inline void SetAllowedByOrganizations(bool value) { m_allowedByOrganizationsHasBeenSet = true; m_allowedByOrganizations = value; } /** *

Specifies whether the simulated operation is allowed by the Organizations * service control policies that impact the simulated user's account.

*/ inline OrganizationsDecisionDetail& WithAllowedByOrganizations(bool value) { SetAllowedByOrganizations(value); return *this;} private: bool m_allowedByOrganizations; bool m_allowedByOrganizationsHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws