/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/opensearchserverless/OpenSearchServerless_EXPORTS.h> #include <aws/opensearchserverless/OpenSearchServerlessRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/opensearchserverless/model/SecurityPolicyType.h> #include <utility> #include <aws/core/utils/UUID.h> namespace Aws { namespace OpenSearchServerless { namespace Model { /** */ class DeleteSecurityPolicyRequest : public OpenSearchServerlessRequest { public: AWS_OPENSEARCHSERVERLESS_API DeleteSecurityPolicyRequest(); // 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 "DeleteSecurityPolicy"; } AWS_OPENSEARCHSERVERLESS_API Aws::String SerializePayload() const override; AWS_OPENSEARCHSERVERLESS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline DeleteSecurityPolicyRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline DeleteSecurityPolicyRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p> */ inline DeleteSecurityPolicyRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** * <p>The name of the policy to delete.</p> */ inline const Aws::String& GetName() const{ return m_name; } /** * <p>The name of the policy to delete.</p> */ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** * <p>The name of the policy to delete.</p> */ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** * <p>The name of the policy to delete.</p> */ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** * <p>The name of the policy to delete.</p> */ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** * <p>The name of the policy to delete.</p> */ inline DeleteSecurityPolicyRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** * <p>The name of the policy to delete.</p> */ inline DeleteSecurityPolicyRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** * <p>The name of the policy to delete.</p> */ inline DeleteSecurityPolicyRequest& WithName(const char* value) { SetName(value); return *this;} /** * <p>The type of policy.</p> */ inline const SecurityPolicyType& GetType() const{ return m_type; } /** * <p>The type of policy.</p> */ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** * <p>The type of policy.</p> */ inline void SetType(const SecurityPolicyType& value) { m_typeHasBeenSet = true; m_type = value; } /** * <p>The type of policy.</p> */ inline void SetType(SecurityPolicyType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** * <p>The type of policy.</p> */ inline DeleteSecurityPolicyRequest& WithType(const SecurityPolicyType& value) { SetType(value); return *this;} /** * <p>The type of policy.</p> */ inline DeleteSecurityPolicyRequest& WithType(SecurityPolicyType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; SecurityPolicyType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchServerless } // namespace Aws