Struct aws_sdk_waf::operation::update_ip_set::UpdateIpSetInput
source · #[non_exhaustive]pub struct UpdateIpSetInput {
pub ip_set_id: Option<String>,
pub change_token: Option<String>,
pub updates: Option<Vec<IpSetUpdate>>,
}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.ip_set_id: Option<String>The IPSetId of the IPSet that you want to update. IPSetId is returned by CreateIPSet and by ListIPSets.
change_token: Option<String>The value returned by the most recent call to GetChangeToken.
updates: Option<Vec<IpSetUpdate>>An array of IPSetUpdate objects that you want to insert into or delete from an IPSet. For more information, see the applicable data types:
-
IPSetUpdate: ContainsActionandIPSetDescriptor -
IPSetDescriptor: ContainsTypeandValue
You can insert a maximum of 1000 addresses in a single request.
Implementations§
source§impl UpdateIpSetInput
impl UpdateIpSetInput
sourcepub fn ip_set_id(&self) -> Option<&str>
pub fn ip_set_id(&self) -> Option<&str>
The IPSetId of the IPSet that you want to update. IPSetId is returned by CreateIPSet and by ListIPSets.
sourcepub fn change_token(&self) -> Option<&str>
pub fn change_token(&self) -> Option<&str>
The value returned by the most recent call to GetChangeToken.
sourcepub fn updates(&self) -> &[IpSetUpdate]
pub fn updates(&self) -> &[IpSetUpdate]
An array of IPSetUpdate objects that you want to insert into or delete from an IPSet. For more information, see the applicable data types:
-
IPSetUpdate: ContainsActionandIPSetDescriptor -
IPSetDescriptor: ContainsTypeandValue
You can insert a maximum of 1000 addresses in a single request.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .updates.is_none().
source§impl UpdateIpSetInput
impl UpdateIpSetInput
sourcepub fn builder() -> UpdateIpSetInputBuilder
pub fn builder() -> UpdateIpSetInputBuilder
Creates a new builder-style object to manufacture UpdateIpSetInput.
Trait Implementations§
source§impl Clone for UpdateIpSetInput
impl Clone for UpdateIpSetInput
source§fn clone(&self) -> UpdateIpSetInput
fn clone(&self) -> UpdateIpSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateIpSetInput
impl Debug for UpdateIpSetInput
source§impl PartialEq for UpdateIpSetInput
impl PartialEq for UpdateIpSetInput
impl StructuralPartialEq for UpdateIpSetInput
Auto Trait Implementations§
impl Freeze for UpdateIpSetInput
impl RefUnwindSafe for UpdateIpSetInput
impl Send for UpdateIpSetInput
impl Sync for UpdateIpSetInput
impl Unpin for UpdateIpSetInput
impl UnwindSafe for UpdateIpSetInput
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