/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the effect that Organizations has on a policy
* simulation.See Also:
AWS
* API Reference
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