Struct rusoto_waf_regional::UpdateIPSetRequest[][src]

pub struct UpdateIPSetRequest {
    pub change_token: String,
    pub ip_set_id: String,
    pub updates: Vec<IPSetUpdate>,
}

Fields

The value returned by the most recent call to GetChangeToken.

The IPSetId of the IPSet that you want to update. IPSetId is returned by CreateIPSet and by ListIPSets.

An array of IPSetUpdate objects that you want to insert into or delete from an IPSet. For more information, see the applicable data types:

Trait Implementations

impl Default for UpdateIPSetRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateIPSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateIPSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateIPSetRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations