import { _GeoMatchConstraint, _UnmarshalledGeoMatchConstraint } from "./_GeoMatchConstraint"; /** *
Specifies the type of update to perform to an GeoMatchSet with UpdateGeoMatchSet.
*/ export interface _GeoMatchSetUpdate { /** *Specifies whether to insert or delete a country with UpdateGeoMatchSet.
*/ Action: "INSERT" | "DELETE" | string; /** *The country from which web requests originate that you want AWS WAF to search for.
*/ GeoMatchConstraint: _GeoMatchConstraint; } export interface _UnmarshalledGeoMatchSetUpdate extends _GeoMatchSetUpdate { /** *The country from which web requests originate that you want AWS WAF to search for.
*/ GeoMatchConstraint: _UnmarshalledGeoMatchConstraint; }