/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about an IAM policy, including the policy document. This data type is used as a response element in the
* GetAccountAuthorizationDetails operation.See Also:
AWS
* API Reference
The name of the policy.
*/ inline const Aws::String& GetPolicyName() const{ return m_policyName; } /** *The name of the policy.
*/ inline bool PolicyNameHasBeenSet() const { return m_policyNameHasBeenSet; } /** *The name of the policy.
*/ inline void SetPolicyName(const Aws::String& value) { m_policyNameHasBeenSet = true; m_policyName = value; } /** *The name of the policy.
*/ inline void SetPolicyName(Aws::String&& value) { m_policyNameHasBeenSet = true; m_policyName = std::move(value); } /** *The name of the policy.
*/ inline void SetPolicyName(const char* value) { m_policyNameHasBeenSet = true; m_policyName.assign(value); } /** *The name of the policy.
*/ inline PolicyDetail& WithPolicyName(const Aws::String& value) { SetPolicyName(value); return *this;} /** *The name of the policy.
*/ inline PolicyDetail& WithPolicyName(Aws::String&& value) { SetPolicyName(std::move(value)); return *this;} /** *The name of the policy.
*/ inline PolicyDetail& WithPolicyName(const char* value) { SetPolicyName(value); return *this;} /** *The policy document.
*/ inline const Aws::String& GetPolicyDocument() const{ return m_policyDocument; } /** *The policy document.
*/ inline bool PolicyDocumentHasBeenSet() const { return m_policyDocumentHasBeenSet; } /** *The policy document.
*/ inline void SetPolicyDocument(const Aws::String& value) { m_policyDocumentHasBeenSet = true; m_policyDocument = value; } /** *The policy document.
*/ inline void SetPolicyDocument(Aws::String&& value) { m_policyDocumentHasBeenSet = true; m_policyDocument = std::move(value); } /** *The policy document.
*/ inline void SetPolicyDocument(const char* value) { m_policyDocumentHasBeenSet = true; m_policyDocument.assign(value); } /** *The policy document.
*/ inline PolicyDetail& WithPolicyDocument(const Aws::String& value) { SetPolicyDocument(value); return *this;} /** *The policy document.
*/ inline PolicyDetail& WithPolicyDocument(Aws::String&& value) { SetPolicyDocument(std::move(value)); return *this;} /** *The policy document.
*/ inline PolicyDetail& WithPolicyDocument(const char* value) { SetPolicyDocument(value); return *this;} private: Aws::String m_policyName; bool m_policyNameHasBeenSet = false; Aws::String m_policyDocument; bool m_policyDocumentHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws