pub struct UpdateXssMatchSetRequest {
pub change_token: String,
pub updates: Vec<XssMatchSetUpdate>,
pub xss_match_set_id: String,
}Expand description
A request to update an XssMatchSet.
Fields§
§change_token: StringThe value returned by the most recent call to GetChangeToken.
updates: Vec<XssMatchSetUpdate>An array of XssMatchSetUpdate objects that you want to insert into or delete from an XssMatchSet. For more information, see the applicable data types:
-
XssMatchSetUpdate: Contains
ActionandXssMatchTuple -
XssMatchTuple: Contains
FieldToMatchandTextTransformation -
FieldToMatch: Contains
DataandType
xss_match_set_id: StringThe XssMatchSetId of the XssMatchSet that you want to update. XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.
Trait Implementations§
Source§impl Clone for UpdateXssMatchSetRequest
impl Clone for UpdateXssMatchSetRequest
Source§fn clone(&self) -> UpdateXssMatchSetRequest
fn clone(&self) -> UpdateXssMatchSetRequest
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 UpdateXssMatchSetRequest
impl Debug for UpdateXssMatchSetRequest
Source§impl Default for UpdateXssMatchSetRequest
impl Default for UpdateXssMatchSetRequest
Source§fn default() -> UpdateXssMatchSetRequest
fn default() -> UpdateXssMatchSetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateXssMatchSetRequest
impl PartialEq for UpdateXssMatchSetRequest
Source§impl Serialize for UpdateXssMatchSetRequest
impl Serialize for UpdateXssMatchSetRequest
impl StructuralPartialEq for UpdateXssMatchSetRequest
Auto Trait Implementations§
impl Freeze for UpdateXssMatchSetRequest
impl RefUnwindSafe for UpdateXssMatchSetRequest
impl Send for UpdateXssMatchSetRequest
impl Sync for UpdateXssMatchSetRequest
impl Unpin for UpdateXssMatchSetRequest
impl UnwindSafe for UpdateXssMatchSetRequest
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