Struct aws_sdk_waf::operation::update_ip_set::UpdateIpSetInput
source · #[non_exhaustive]pub struct UpdateIpSetInput { /* private fields */ }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) -> Option<&[IpSetUpdate]>
pub fn updates(&self) -> Option<&[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.
source§impl UpdateIpSetInput
impl UpdateIpSetInput
sourcepub fn builder() -> UpdateIpSetInputBuilder
pub fn builder() -> UpdateIpSetInputBuilder
Creates a new builder-style object to manufacture UpdateIpSetInput.
source§impl UpdateIpSetInput
impl UpdateIpSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateIPSet, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateIPSet, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateIPSet>
Trait Implementations§
source§impl Clone for UpdateIpSetInput
impl Clone for UpdateIpSetInput
source§fn clone(&self) -> UpdateIpSetInput
fn clone(&self) -> UpdateIpSetInput
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 UpdateIpSetInput
impl Debug for UpdateIpSetInput
source§impl PartialEq<UpdateIpSetInput> for UpdateIpSetInput
impl PartialEq<UpdateIpSetInput> for UpdateIpSetInput
source§fn eq(&self, other: &UpdateIpSetInput) -> bool
fn eq(&self, other: &UpdateIpSetInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateIpSetInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more