Struct aws_sdk_wafv2::output::GetWebAclOutput
source · [−]#[non_exhaustive]pub struct GetWebAclOutput {
pub web_acl: Option<WebAcl>,
pub lock_token: Option<String>,
pub application_integration_url: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.web_acl: Option<WebAcl>The web ACL specification. You can modify the settings in this web ACL and use it to update this web ACL or create a new one.
lock_token: Option<String>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.
application_integration_url: Option<String>The URL to use in SDK integrations with Amazon Web Services managed rule groups. For example, you can use the integration SDKs with the account takeover prevention managed rule group AWSManagedRulesATPRuleSet. This is only populated if you are using a rule group in your web ACL that integrates with your applications in this way. For more information, see WAF client application integration in the WAF Developer Guide.
Implementations
sourceimpl GetWebAclOutput
impl GetWebAclOutput
sourcepub fn web_acl(&self) -> Option<&WebAcl>
pub fn web_acl(&self) -> Option<&WebAcl>
The web ACL specification. You can modify the settings in this web ACL and use it to update this web ACL or create a new one.
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.
sourcepub fn application_integration_url(&self) -> Option<&str>
pub fn application_integration_url(&self) -> Option<&str>
The URL to use in SDK integrations with Amazon Web Services managed rule groups. For example, you can use the integration SDKs with the account takeover prevention managed rule group AWSManagedRulesATPRuleSet. This is only populated if you are using a rule group in your web ACL that integrates with your applications in this way. For more information, see WAF client application integration in the WAF Developer Guide.
sourceimpl GetWebAclOutput
impl GetWebAclOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetWebAclOutput
Trait Implementations
sourceimpl Clone for GetWebAclOutput
impl Clone for GetWebAclOutput
sourcefn clone(&self) -> GetWebAclOutput
fn clone(&self) -> GetWebAclOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GetWebAclOutput
impl Debug for GetWebAclOutput
sourceimpl PartialEq<GetWebAclOutput> for GetWebAclOutput
impl PartialEq<GetWebAclOutput> for GetWebAclOutput
sourcefn eq(&self, other: &GetWebAclOutput) -> bool
fn eq(&self, other: &GetWebAclOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetWebAclOutput) -> bool
fn ne(&self, other: &GetWebAclOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for GetWebAclOutput
Auto Trait Implementations
impl RefUnwindSafe for GetWebAclOutput
impl Send for GetWebAclOutput
impl Sync for GetWebAclOutput
impl Unpin for GetWebAclOutput
impl UnwindSafe for GetWebAclOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more