#[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 get_ip_id(&self) -> &Option<String>
pub fn get_ip_id(&self) -> &Option<String>
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 get_subnet_id(&self) -> &Option<String>
pub fn get_subnet_id(&self) -> &Option<String>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for IpAddressUpdateBuilder
impl PartialEq for IpAddressUpdateBuilder
source§fn eq(&self, other: &IpAddressUpdateBuilder) -> bool
fn eq(&self, other: &IpAddressUpdateBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.