/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SSM { namespace Model { /** */ class PutResourcePolicyRequest : public SSMRequest { public: AWS_SSM_API PutResourcePolicyRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "PutResourcePolicy"; } AWS_SSM_API Aws::String SerializePayload() const override; AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline const Aws::String& GetResourceArn() const{ return m_resourceArn; } /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; } /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; } /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); } /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); } /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline PutResourcePolicyRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;} /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline PutResourcePolicyRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;} /** *

Amazon Resource Name (ARN) of the resource to which you want to attach a * policy.

*/ inline PutResourcePolicyRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;} /** *

A policy you want to associate with a resource.

*/ inline const Aws::String& GetPolicy() const{ return m_policy; } /** *

A policy you want to associate with a resource.

*/ inline bool PolicyHasBeenSet() const { return m_policyHasBeenSet; } /** *

A policy you want to associate with a resource.

*/ inline void SetPolicy(const Aws::String& value) { m_policyHasBeenSet = true; m_policy = value; } /** *

A policy you want to associate with a resource.

*/ inline void SetPolicy(Aws::String&& value) { m_policyHasBeenSet = true; m_policy = std::move(value); } /** *

A policy you want to associate with a resource.

*/ inline void SetPolicy(const char* value) { m_policyHasBeenSet = true; m_policy.assign(value); } /** *

A policy you want to associate with a resource.

*/ inline PutResourcePolicyRequest& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;} /** *

A policy you want to associate with a resource.

*/ inline PutResourcePolicyRequest& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;} /** *

A policy you want to associate with a resource.

*/ inline PutResourcePolicyRequest& WithPolicy(const char* value) { SetPolicy(value); return *this;} /** *

The policy ID.

*/ inline const Aws::String& GetPolicyId() const{ return m_policyId; } /** *

The policy ID.

*/ inline bool PolicyIdHasBeenSet() const { return m_policyIdHasBeenSet; } /** *

The policy ID.

*/ inline void SetPolicyId(const Aws::String& value) { m_policyIdHasBeenSet = true; m_policyId = value; } /** *

The policy ID.

*/ inline void SetPolicyId(Aws::String&& value) { m_policyIdHasBeenSet = true; m_policyId = std::move(value); } /** *

The policy ID.

*/ inline void SetPolicyId(const char* value) { m_policyIdHasBeenSet = true; m_policyId.assign(value); } /** *

The policy ID.

*/ inline PutResourcePolicyRequest& WithPolicyId(const Aws::String& value) { SetPolicyId(value); return *this;} /** *

The policy ID.

*/ inline PutResourcePolicyRequest& WithPolicyId(Aws::String&& value) { SetPolicyId(std::move(value)); return *this;} /** *

The policy ID.

*/ inline PutResourcePolicyRequest& WithPolicyId(const char* value) { SetPolicyId(value); return *this;} /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline const Aws::String& GetPolicyHash() const{ return m_policyHash; } /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline bool PolicyHashHasBeenSet() const { return m_policyHashHasBeenSet; } /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline void SetPolicyHash(const Aws::String& value) { m_policyHashHasBeenSet = true; m_policyHash = value; } /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline void SetPolicyHash(Aws::String&& value) { m_policyHashHasBeenSet = true; m_policyHash = std::move(value); } /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline void SetPolicyHash(const char* value) { m_policyHashHasBeenSet = true; m_policyHash.assign(value); } /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline PutResourcePolicyRequest& WithPolicyHash(const Aws::String& value) { SetPolicyHash(value); return *this;} /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline PutResourcePolicyRequest& WithPolicyHash(Aws::String&& value) { SetPolicyHash(std::move(value)); return *this;} /** *

ID of the current policy version. The hash helps to prevent a situation where * multiple users attempt to overwrite a policy. You must provide this hash when * updating or deleting a policy.

*/ inline PutResourcePolicyRequest& WithPolicyHash(const char* value) { SetPolicyHash(value); return *this;} private: Aws::String m_resourceArn; bool m_resourceArnHasBeenSet = false; Aws::String m_policy; bool m_policyHasBeenSet = false; Aws::String m_policyId; bool m_policyIdHasBeenSet = false; Aws::String m_policyHash; bool m_policyHashHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws