#[non_exhaustive]pub struct UpdateIpAddressBuilder { /* private fields */ }Expand description
A builder for UpdateIpAddress.
Implementations§
source§impl UpdateIpAddressBuilder
impl UpdateIpAddressBuilder
sourcepub fn ip_id(self, input: impl Into<String>) -> Self
pub fn ip_id(self, input: impl Into<String>) -> Self
The ID of the IP address, specified by the ResolverEndpointId.
sourcepub fn set_ip_id(self, input: Option<String>) -> Self
pub fn set_ip_id(self, input: Option<String>) -> Self
The ID of the IP address, specified by the ResolverEndpointId.
sourcepub fn get_ip_id(&self) -> &Option<String>
pub fn get_ip_id(&self) -> &Option<String>
The ID of the IP address, specified by the ResolverEndpointId.
sourcepub fn ipv6(self, input: impl Into<String>) -> Self
pub fn ipv6(self, input: impl Into<String>) -> Self
The IPv6 address that you want to use for DNS queries.
This field is required.sourcepub fn set_ipv6(self, input: Option<String>) -> Self
pub fn set_ipv6(self, input: Option<String>) -> Self
The IPv6 address that you want to use for DNS queries.
sourcepub fn get_ipv6(&self) -> &Option<String>
pub fn get_ipv6(&self) -> &Option<String>
The IPv6 address that you want to use for DNS queries.
sourcepub fn build(self) -> Result<UpdateIpAddress, BuildError>
pub fn build(self) -> Result<UpdateIpAddress, BuildError>
Consumes the builder and constructs a UpdateIpAddress.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for UpdateIpAddressBuilder
impl Clone for UpdateIpAddressBuilder
source§fn clone(&self) -> UpdateIpAddressBuilder
fn clone(&self) -> UpdateIpAddressBuilder
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 UpdateIpAddressBuilder
impl Debug for UpdateIpAddressBuilder
source§impl Default for UpdateIpAddressBuilder
impl Default for UpdateIpAddressBuilder
source§fn default() -> UpdateIpAddressBuilder
fn default() -> UpdateIpAddressBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateIpAddressBuilder
impl PartialEq for UpdateIpAddressBuilder
source§fn eq(&self, other: &UpdateIpAddressBuilder) -> bool
fn eq(&self, other: &UpdateIpAddressBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateIpAddressBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateIpAddressBuilder
impl Send for UpdateIpAddressBuilder
impl Sync for UpdateIpAddressBuilder
impl Unpin for UpdateIpAddressBuilder
impl UnwindSafe for UpdateIpAddressBuilder
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
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>
Creates a shared type from an unshared type.