/** * 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 EC2 { namespace Model { /** */ class DeleteNetworkAclEntryRequest : public EC2Request { public: AWS_EC2_API DeleteNetworkAclEntryRequest(); // 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 "DeleteNetworkAclEntry"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline DeleteNetworkAclEntryRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

Indicates whether the rule is an egress rule.

*/ inline bool GetEgress() const{ return m_egress; } /** *

Indicates whether the rule is an egress rule.

*/ inline bool EgressHasBeenSet() const { return m_egressHasBeenSet; } /** *

Indicates whether the rule is an egress rule.

*/ inline void SetEgress(bool value) { m_egressHasBeenSet = true; m_egress = value; } /** *

Indicates whether the rule is an egress rule.

*/ inline DeleteNetworkAclEntryRequest& WithEgress(bool value) { SetEgress(value); return *this;} /** *

The ID of the network ACL.

*/ inline const Aws::String& GetNetworkAclId() const{ return m_networkAclId; } /** *

The ID of the network ACL.

*/ inline bool NetworkAclIdHasBeenSet() const { return m_networkAclIdHasBeenSet; } /** *

The ID of the network ACL.

*/ inline void SetNetworkAclId(const Aws::String& value) { m_networkAclIdHasBeenSet = true; m_networkAclId = value; } /** *

The ID of the network ACL.

*/ inline void SetNetworkAclId(Aws::String&& value) { m_networkAclIdHasBeenSet = true; m_networkAclId = std::move(value); } /** *

The ID of the network ACL.

*/ inline void SetNetworkAclId(const char* value) { m_networkAclIdHasBeenSet = true; m_networkAclId.assign(value); } /** *

The ID of the network ACL.

*/ inline DeleteNetworkAclEntryRequest& WithNetworkAclId(const Aws::String& value) { SetNetworkAclId(value); return *this;} /** *

The ID of the network ACL.

*/ inline DeleteNetworkAclEntryRequest& WithNetworkAclId(Aws::String&& value) { SetNetworkAclId(std::move(value)); return *this;} /** *

The ID of the network ACL.

*/ inline DeleteNetworkAclEntryRequest& WithNetworkAclId(const char* value) { SetNetworkAclId(value); return *this;} /** *

The rule number of the entry to delete.

*/ inline int GetRuleNumber() const{ return m_ruleNumber; } /** *

The rule number of the entry to delete.

*/ inline bool RuleNumberHasBeenSet() const { return m_ruleNumberHasBeenSet; } /** *

The rule number of the entry to delete.

*/ inline void SetRuleNumber(int value) { m_ruleNumberHasBeenSet = true; m_ruleNumber = value; } /** *

The rule number of the entry to delete.

*/ inline DeleteNetworkAclEntryRequest& WithRuleNumber(int value) { SetRuleNumber(value); return *this;} private: bool m_dryRun; bool m_dryRunHasBeenSet = false; bool m_egress; bool m_egressHasBeenSet = false; Aws::String m_networkAclId; bool m_networkAclIdHasBeenSet = false; int m_ruleNumber; bool m_ruleNumberHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws