#[non_exhaustive]pub struct IpAddressUpdateBuilder { /* private fields */ }Expand description
A builder for IpAddressUpdate.
Implementations§
source§impl IpAddressUpdateBuilder
impl IpAddressUpdateBuilder
sourcepub fn ip_id(self, input: impl Into<String>) -> Self
pub fn ip_id(self, input: impl Into<String>) -> Self
Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.
sourcepub fn set_ip_id(self, input: Option<String>) -> Self
pub fn set_ip_id(self, input: Option<String>) -> Self
Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.
sourcepub fn subnet_id(self, input: impl Into<String>) -> Self
pub fn subnet_id(self, input: impl Into<String>) -> Self
The ID of the subnet that includes the IP address that you want to update. To get this ID, use GetResolverEndpoint.
sourcepub fn set_subnet_id(self, input: Option<String>) -> Self
pub fn set_subnet_id(self, input: Option<String>) -> Self
The ID of the subnet that includes the IP address that you want to update. To get this ID, use GetResolverEndpoint.
sourcepub fn build(self) -> IpAddressUpdate
pub fn build(self) -> IpAddressUpdate
Consumes the builder and constructs a IpAddressUpdate.
Trait Implementations§
source§impl Clone for IpAddressUpdateBuilder
impl Clone for IpAddressUpdateBuilder
source§fn clone(&self) -> IpAddressUpdateBuilder
fn clone(&self) -> IpAddressUpdateBuilder
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 IpAddressUpdateBuilder
impl Debug for IpAddressUpdateBuilder
source§impl Default for IpAddressUpdateBuilder
impl Default for IpAddressUpdateBuilder
source§fn default() -> IpAddressUpdateBuilder
fn default() -> IpAddressUpdateBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<IpAddressUpdateBuilder> for IpAddressUpdateBuilder
impl PartialEq<IpAddressUpdateBuilder> for IpAddressUpdateBuilder
source§fn eq(&self, other: &IpAddressUpdateBuilder) -> bool
fn eq(&self, other: &IpAddressUpdateBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.