Struct aws_sdk_networkmanager::operation::associate_customer_gateway::builders::AssociateCustomerGatewayInputBuilder
source · #[non_exhaustive]pub struct AssociateCustomerGatewayInputBuilder { /* private fields */ }
Expand description
A builder for AssociateCustomerGatewayInput
.
Implementations§
source§impl AssociateCustomerGatewayInputBuilder
impl AssociateCustomerGatewayInputBuilder
sourcepub fn customer_gateway_arn(self, input: impl Into<String>) -> Self
pub fn customer_gateway_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the customer gateway.
This field is required.sourcepub fn set_customer_gateway_arn(self, input: Option<String>) -> Self
pub fn set_customer_gateway_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the customer gateway.
sourcepub fn get_customer_gateway_arn(&self) -> &Option<String>
pub fn get_customer_gateway_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the customer gateway.
sourcepub fn global_network_id(self, input: impl Into<String>) -> Self
pub fn global_network_id(self, input: impl Into<String>) -> Self
The ID of the global network.
This field is required.sourcepub fn set_global_network_id(self, input: Option<String>) -> Self
pub fn set_global_network_id(self, input: Option<String>) -> Self
The ID of the global network.
sourcepub fn get_global_network_id(&self) -> &Option<String>
pub fn get_global_network_id(&self) -> &Option<String>
The ID of the global network.
sourcepub fn device_id(self, input: impl Into<String>) -> Self
pub fn device_id(self, input: impl Into<String>) -> Self
The ID of the device.
This field is required.sourcepub fn set_device_id(self, input: Option<String>) -> Self
pub fn set_device_id(self, input: Option<String>) -> Self
The ID of the device.
sourcepub fn get_device_id(&self) -> &Option<String>
pub fn get_device_id(&self) -> &Option<String>
The ID of the device.
sourcepub fn set_link_id(self, input: Option<String>) -> Self
pub fn set_link_id(self, input: Option<String>) -> Self
The ID of the link.
sourcepub fn get_link_id(&self) -> &Option<String>
pub fn get_link_id(&self) -> &Option<String>
The ID of the link.
sourcepub fn build(self) -> Result<AssociateCustomerGatewayInput, BuildError>
pub fn build(self) -> Result<AssociateCustomerGatewayInput, BuildError>
Consumes the builder and constructs a AssociateCustomerGatewayInput
.
source§impl AssociateCustomerGatewayInputBuilder
impl AssociateCustomerGatewayInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<AssociateCustomerGatewayOutput, SdkError<AssociateCustomerGatewayError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<AssociateCustomerGatewayOutput, SdkError<AssociateCustomerGatewayError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AssociateCustomerGatewayInputBuilder
impl Clone for AssociateCustomerGatewayInputBuilder
source§fn clone(&self) -> AssociateCustomerGatewayInputBuilder
fn clone(&self) -> AssociateCustomerGatewayInputBuilder
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 Default for AssociateCustomerGatewayInputBuilder
impl Default for AssociateCustomerGatewayInputBuilder
source§fn default() -> AssociateCustomerGatewayInputBuilder
fn default() -> AssociateCustomerGatewayInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AssociateCustomerGatewayInputBuilder
impl PartialEq for AssociateCustomerGatewayInputBuilder
source§fn eq(&self, other: &AssociateCustomerGatewayInputBuilder) -> bool
fn eq(&self, other: &AssociateCustomerGatewayInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociateCustomerGatewayInputBuilder
Auto Trait Implementations§
impl Freeze for AssociateCustomerGatewayInputBuilder
impl RefUnwindSafe for AssociateCustomerGatewayInputBuilder
impl Send for AssociateCustomerGatewayInputBuilder
impl Sync for AssociateCustomerGatewayInputBuilder
impl Unpin for AssociateCustomerGatewayInputBuilder
impl UnwindSafe for AssociateCustomerGatewayInputBuilder
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.