Files
DedicatedServerCourse/Plugins/GameLiftPlugin/Source/AWSSDK/Include/aws/ssm/model/DeleteResourcePolicyRequest.h
2026-02-28 12:32:28 -05:00

95 lines
4.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ssm/SSM_EXPORTS.h>
#include <aws/ssm/SSMRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace SSM
{
namespace Model
{
/**
*/
class DeleteResourcePolicyRequest : public SSMRequest
{
public:
AWS_SSM_API DeleteResourcePolicyRequest();
// 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 "DeleteResourcePolicy"; }
AWS_SSM_API Aws::String SerializePayload() const override;
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
///@{
/**
* <p>Amazon Resource Name (ARN) of the resource to which the policies are
* attached.</p>
*/
inline const Aws::String& GetResourceArn() const{ return m_resourceArn; }
inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; }
inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); }
inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); }
inline DeleteResourcePolicyRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;}
inline DeleteResourcePolicyRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;}
inline DeleteResourcePolicyRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;}
///@}
///@{
/**
* <p>The policy ID.</p>
*/
inline const Aws::String& GetPolicyId() const{ return m_policyId; }
inline bool PolicyIdHasBeenSet() const { return m_policyIdHasBeenSet; }
inline void SetPolicyId(const Aws::String& value) { m_policyIdHasBeenSet = true; m_policyId = value; }
inline void SetPolicyId(Aws::String&& value) { m_policyIdHasBeenSet = true; m_policyId = std::move(value); }
inline void SetPolicyId(const char* value) { m_policyIdHasBeenSet = true; m_policyId.assign(value); }
inline DeleteResourcePolicyRequest& WithPolicyId(const Aws::String& value) { SetPolicyId(value); return *this;}
inline DeleteResourcePolicyRequest& WithPolicyId(Aws::String&& value) { SetPolicyId(std::move(value)); return *this;}
inline DeleteResourcePolicyRequest& WithPolicyId(const char* value) { SetPolicyId(value); return *this;}
///@}
///@{
/**
* <p>ID of the current policy version. The hash helps to prevent multiple calls
* from attempting to overwrite a policy.</p>
*/
inline const Aws::String& GetPolicyHash() const{ return m_policyHash; }
inline bool PolicyHashHasBeenSet() const { return m_policyHashHasBeenSet; }
inline void SetPolicyHash(const Aws::String& value) { m_policyHashHasBeenSet = true; m_policyHash = value; }
inline void SetPolicyHash(Aws::String&& value) { m_policyHashHasBeenSet = true; m_policyHash = std::move(value); }
inline void SetPolicyHash(const char* value) { m_policyHashHasBeenSet = true; m_policyHash.assign(value); }
inline DeleteResourcePolicyRequest& WithPolicyHash(const Aws::String& value) { SetPolicyHash(value); return *this;}
inline DeleteResourcePolicyRequest& WithPolicyHash(Aws::String&& value) { SetPolicyHash(std::move(value)); return *this;}
inline DeleteResourcePolicyRequest& WithPolicyHash(const char* value) { SetPolicyHash(value); return *this;}
///@}
private:
Aws::String m_resourceArn;
bool m_resourceArnHasBeenSet = false;
Aws::String m_policyId;
bool m_policyIdHasBeenSet = false;
Aws::String m_policyHash;
bool m_policyHashHasBeenSet = false;
};
} // namespace Model
} // namespace SSM
} // namespace Aws