/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace OpenSearchServerless { namespace Model { /** */ class DeleteAccessPolicyRequest : public OpenSearchServerlessRequest { public: AWS_OPENSEARCHSERVERLESS_API DeleteAccessPolicyRequest(); // 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 "DeleteAccessPolicy"; } AWS_OPENSEARCHSERVERLESS_API Aws::String SerializePayload() const override; AWS_OPENSEARCHSERVERLESS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline DeleteAccessPolicyRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline DeleteAccessPolicyRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier to ensure idempotency of the request.

*/ inline DeleteAccessPolicyRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *

The name of the policy to delete.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the policy to delete.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the policy to delete.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the policy to delete.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the policy to delete.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the policy to delete.

*/ inline DeleteAccessPolicyRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the policy to delete.

*/ inline DeleteAccessPolicyRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the policy to delete.

*/ inline DeleteAccessPolicyRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The type of policy.

*/ inline const AccessPolicyType& GetType() const{ return m_type; } /** *

The type of policy.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

The type of policy.

*/ inline void SetType(const AccessPolicyType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

The type of policy.

*/ inline void SetType(AccessPolicyType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

The type of policy.

*/ inline DeleteAccessPolicyRequest& WithType(const AccessPolicyType& value) { SetType(value); return *this;} /** *

The type of policy.

*/ inline DeleteAccessPolicyRequest& WithType(AccessPolicyType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; AccessPolicyType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchServerless } // namespace Aws