import { _ByteMatchTuple, _UnmarshalledByteMatchTuple } from "./_ByteMatchTuple"; /** *

In an UpdateByteMatchSet request, ByteMatchSetUpdate specifies whether to insert or delete a ByteMatchTuple and includes the settings for the ByteMatchTuple.

*/ export interface _ByteMatchSetUpdate { /** *

Specifies whether to insert or delete a ByteMatchTuple.

*/ Action: "INSERT" | "DELETE" | string; /** *

Information about the part of a web request that you want AWS WAF to inspect and the value that you want AWS WAF to search for. If you specify DELETE for the value of Action, the ByteMatchTuple values must exactly match the values in the ByteMatchTuple that you want to delete from the ByteMatchSet.

*/ ByteMatchTuple: _ByteMatchTuple; } export interface _UnmarshalledByteMatchSetUpdate extends _ByteMatchSetUpdate { /** *

Information about the part of a web request that you want AWS WAF to inspect and the value that you want AWS WAF to search for. If you specify DELETE for the value of Action, the ByteMatchTuple values must exactly match the values in the ByteMatchTuple that you want to delete from the ByteMatchSet.

*/ ByteMatchTuple: _UnmarshalledByteMatchTuple; }