#[non_exhaustive]pub struct GetRegexPatternSetOutput { /* private fields */ }
Implementations§
source§impl GetRegexPatternSetOutput
impl GetRegexPatternSetOutput
sourcepub fn regex_pattern_set(&self) -> Option<&RegexPatternSet>
pub fn regex_pattern_set(&self) -> Option<&RegexPatternSet>
sourcepub fn lock_token(&self) -> Option<&str>
pub fn lock_token(&self) -> Option<&str>
A token used for optimistic locking. WAF returns a token to your get
and list
requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update
and delete
. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException
. If this happens, perform another get
, and use the new token returned by that operation.
source§impl GetRegexPatternSetOutput
impl GetRegexPatternSetOutput
sourcepub fn builder() -> GetRegexPatternSetOutputBuilder
pub fn builder() -> GetRegexPatternSetOutputBuilder
Creates a new builder-style object to manufacture GetRegexPatternSetOutput
.
Trait Implementations§
source§impl Clone for GetRegexPatternSetOutput
impl Clone for GetRegexPatternSetOutput
source§fn clone(&self) -> GetRegexPatternSetOutput
fn clone(&self) -> GetRegexPatternSetOutput
Returns a copy 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 GetRegexPatternSetOutput
impl Debug for GetRegexPatternSetOutput
source§impl PartialEq<GetRegexPatternSetOutput> for GetRegexPatternSetOutput
impl PartialEq<GetRegexPatternSetOutput> for GetRegexPatternSetOutput
source§fn eq(&self, other: &GetRegexPatternSetOutput) -> bool
fn eq(&self, other: &GetRegexPatternSetOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetRegexPatternSetOutput
impl RequestId for GetRegexPatternSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetRegexPatternSetOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRegexPatternSetOutput
impl Send for GetRegexPatternSetOutput
impl Sync for GetRegexPatternSetOutput
impl Unpin for GetRegexPatternSetOutput
impl UnwindSafe for GetRegexPatternSetOutput
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