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
source§fn eq(&self, other: &UpdateIpSetInput) -> bool
fn eq(&self, other: &UpdateIpSetInput) -> bool
self and other values to be equal, and is used
by ==.