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

Contains the response to a successful GetGroupPolicy request. *

See Also:

AWS * API Reference

*/ class GetGroupPolicyResult { public: AWS_IAM_API GetGroupPolicyResult(); AWS_IAM_API GetGroupPolicyResult(const Aws::AmazonWebServiceResult& result); AWS_IAM_API GetGroupPolicyResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The group the policy is associated with.

*/ inline const Aws::String& GetGroupName() const{ return m_groupName; } /** *

The group the policy is associated with.

*/ inline void SetGroupName(const Aws::String& value) { m_groupName = value; } /** *

The group the policy is associated with.

*/ inline void SetGroupName(Aws::String&& value) { m_groupName = std::move(value); } /** *

The group the policy is associated with.

*/ inline void SetGroupName(const char* value) { m_groupName.assign(value); } /** *

The group the policy is associated with.

*/ inline GetGroupPolicyResult& WithGroupName(const Aws::String& value) { SetGroupName(value); return *this;} /** *

The group the policy is associated with.

*/ inline GetGroupPolicyResult& WithGroupName(Aws::String&& value) { SetGroupName(std::move(value)); return *this;} /** *

The group the policy is associated with.

*/ inline GetGroupPolicyResult& WithGroupName(const char* value) { SetGroupName(value); return *this;} /** *

The name of the policy.

*/ inline const Aws::String& GetPolicyName() const{ return m_policyName; } /** *

The name of the policy.

*/ inline void SetPolicyName(const Aws::String& value) { m_policyName = value; } /** *

The name of the policy.

*/ inline void SetPolicyName(Aws::String&& value) { m_policyName = std::move(value); } /** *

The name of the policy.

*/ inline void SetPolicyName(const char* value) { m_policyName.assign(value); } /** *

The name of the policy.

*/ inline GetGroupPolicyResult& WithPolicyName(const Aws::String& value) { SetPolicyName(value); return *this;} /** *

The name of the policy.

*/ inline GetGroupPolicyResult& WithPolicyName(Aws::String&& value) { SetPolicyName(std::move(value)); return *this;} /** *

The name of the policy.

*/ inline GetGroupPolicyResult& WithPolicyName(const char* value) { SetPolicyName(value); return *this;} /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline const Aws::String& GetPolicyDocument() const{ return m_policyDocument; } /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline void SetPolicyDocument(const Aws::String& value) { m_policyDocument = value; } /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline void SetPolicyDocument(Aws::String&& value) { m_policyDocument = std::move(value); } /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline void SetPolicyDocument(const char* value) { m_policyDocument.assign(value); } /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline GetGroupPolicyResult& WithPolicyDocument(const Aws::String& value) { SetPolicyDocument(value); return *this;} /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline GetGroupPolicyResult& WithPolicyDocument(Aws::String&& value) { SetPolicyDocument(std::move(value)); return *this;} /** *

The policy document.

IAM stores policies in JSON format. However, * resources that were created using CloudFormation templates can be formatted in * YAML. CloudFormation always converts a YAML policy to JSON format before * submitting it to IAM.

*/ inline GetGroupPolicyResult& WithPolicyDocument(const char* value) { SetPolicyDocument(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline GetGroupPolicyResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetGroupPolicyResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_groupName; Aws::String m_policyName; Aws::String m_policyDocument; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws