Struct aws_sdk_backupgateway::operation::associate_gateway_to_server::builders::AssociateGatewayToServerInputBuilder
source · #[non_exhaustive]pub struct AssociateGatewayToServerInputBuilder { /* private fields */ }
Expand description
A builder for AssociateGatewayToServerInput
.
Implementations§
source§impl AssociateGatewayToServerInputBuilder
impl AssociateGatewayToServerInputBuilder
sourcepub fn gateway_arn(self, input: impl Into<String>) -> Self
pub fn gateway_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn set_gateway_arn(self, input: Option<String>) -> Self
pub fn set_gateway_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn get_gateway_arn(&self) -> &Option<String>
pub fn get_gateway_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn server_arn(self, input: impl Into<String>) -> Self
pub fn server_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the server that hosts your virtual machines.
This field is required.sourcepub fn set_server_arn(self, input: Option<String>) -> Self
pub fn set_server_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the server that hosts your virtual machines.
sourcepub fn get_server_arn(&self) -> &Option<String>
pub fn get_server_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the server that hosts your virtual machines.
sourcepub fn build(self) -> Result<AssociateGatewayToServerInput, BuildError>
pub fn build(self) -> Result<AssociateGatewayToServerInput, BuildError>
Consumes the builder and constructs a AssociateGatewayToServerInput
.
source§impl AssociateGatewayToServerInputBuilder
impl AssociateGatewayToServerInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AssociateGatewayToServerOutput, SdkError<AssociateGatewayToServerError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AssociateGatewayToServerOutput, SdkError<AssociateGatewayToServerError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AssociateGatewayToServerInputBuilder
impl Clone for AssociateGatewayToServerInputBuilder
source§fn clone(&self) -> AssociateGatewayToServerInputBuilder
fn clone(&self) -> AssociateGatewayToServerInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AssociateGatewayToServerInputBuilder
impl Default for AssociateGatewayToServerInputBuilder
source§fn default() -> AssociateGatewayToServerInputBuilder
fn default() -> AssociateGatewayToServerInputBuilder
source§impl PartialEq for AssociateGatewayToServerInputBuilder
impl PartialEq for AssociateGatewayToServerInputBuilder
source§fn eq(&self, other: &AssociateGatewayToServerInputBuilder) -> bool
fn eq(&self, other: &AssociateGatewayToServerInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociateGatewayToServerInputBuilder
Auto Trait Implementations§
impl Freeze for AssociateGatewayToServerInputBuilder
impl RefUnwindSafe for AssociateGatewayToServerInputBuilder
impl Send for AssociateGatewayToServerInputBuilder
impl Sync for AssociateGatewayToServerInputBuilder
impl Unpin for AssociateGatewayToServerInputBuilder
impl UnwindSafe for AssociateGatewayToServerInputBuilder
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
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>
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>
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 more