Struct aws_sdk_wafv2::types::IpSetSummary
source · #[non_exhaustive]pub struct IpSetSummary {
pub name: Option<String>,
pub id: Option<String>,
pub description: Option<String>,
pub lock_token: Option<String>,
pub arn: Option<String>,
}
Expand description
High-level information about an IPSet
, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet
, and the ARN, that you provide to the IPSetReferenceStatement
to use the address set in a Rule
.
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.name: Option<String>
The name of the IP set. You cannot change the name of an IPSet
after you create it.
id: Option<String>
A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
description: Option<String>
A description of the IP set that helps with identification.
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.
arn: Option<String>
The Amazon Resource Name (ARN) of the entity.
Implementations§
source§impl IpSetSummary
impl IpSetSummary
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the IP set. You cannot change the name of an IPSet
after you create it.
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the IP set that helps with identification.
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 IpSetSummary
impl IpSetSummary
sourcepub fn builder() -> IpSetSummaryBuilder
pub fn builder() -> IpSetSummaryBuilder
Creates a new builder-style object to manufacture IpSetSummary
.
Trait Implementations§
source§impl Clone for IpSetSummary
impl Clone for IpSetSummary
source§fn clone(&self) -> IpSetSummary
fn clone(&self) -> IpSetSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for IpSetSummary
impl Debug for IpSetSummary
source§impl PartialEq for IpSetSummary
impl PartialEq for IpSetSummary
impl StructuralPartialEq for IpSetSummary
Auto Trait Implementations§
impl Freeze for IpSetSummary
impl RefUnwindSafe for IpSetSummary
impl Send for IpSetSummary
impl Sync for IpSetSummary
impl Unpin for IpSetSummary
impl UnwindSafe for IpSetSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more