pub struct IPSetUpdate {
pub action: String,
pub ip_set_descriptor: IPSetDescriptor,
}Expand description
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
Specifies the type of update to perform to an IPSet with UpdateIPSet.
Fields§
§action: StringSpecifies whether to insert or delete an IP address with UpdateIPSet.
ip_set_descriptor: IPSetDescriptorThe IP address type (IPV4 or IPV6) and the IP address range (in CIDR notation) that web requests originate from.
Trait Implementations§
Source§impl Clone for IPSetUpdate
impl Clone for IPSetUpdate
Source§fn clone(&self) -> IPSetUpdate
fn clone(&self) -> IPSetUpdate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IPSetUpdate
impl Debug for IPSetUpdate
Source§impl Default for IPSetUpdate
impl Default for IPSetUpdate
Source§fn default() -> IPSetUpdate
fn default() -> IPSetUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for IPSetUpdate
impl PartialEq for IPSetUpdate
Source§impl Serialize for IPSetUpdate
impl Serialize for IPSetUpdate
impl StructuralPartialEq for IPSetUpdate
Auto Trait Implementations§
impl Freeze for IPSetUpdate
impl RefUnwindSafe for IPSetUpdate
impl Send for IPSetUpdate
impl Sync for IPSetUpdate
impl Unpin for IPSetUpdate
impl UnwindSafe for IPSetUpdate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more