Struct rusoto_waf_regional::UpdateSizeConstraintSetRequest[][src]

pub struct UpdateSizeConstraintSetRequest {
    pub change_token: String,
    pub size_constraint_set_id: String,
    pub updates: Vec<SizeConstraintSetUpdate>,
}

Fields

The value returned by the most recent call to GetChangeToken.

The SizeConstraintSetId of the SizeConstraintSet that you want to update. SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.

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

Trait Implementations

impl Default for UpdateSizeConstraintSetRequest
[src]

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

impl Debug for UpdateSizeConstraintSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateSizeConstraintSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateSizeConstraintSetRequest
[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