Struct aws_sdk_ec2::operation::associate_route_table::builders::AssociateRouteTableOutputBuilder
source · #[non_exhaustive]pub struct AssociateRouteTableOutputBuilder { /* private fields */ }
Expand description
A builder for AssociateRouteTableOutput
.
Implementations§
source§impl AssociateRouteTableOutputBuilder
impl AssociateRouteTableOutputBuilder
sourcepub fn association_id(self, input: impl Into<String>) -> Self
pub fn association_id(self, input: impl Into<String>) -> Self
The route table association ID. This ID is required for disassociating the route table.
sourcepub fn set_association_id(self, input: Option<String>) -> Self
pub fn set_association_id(self, input: Option<String>) -> Self
The route table association ID. This ID is required for disassociating the route table.
sourcepub fn get_association_id(&self) -> &Option<String>
pub fn get_association_id(&self) -> &Option<String>
The route table association ID. This ID is required for disassociating the route table.
sourcepub fn association_state(self, input: RouteTableAssociationState) -> Self
pub fn association_state(self, input: RouteTableAssociationState) -> Self
The state of the association.
sourcepub fn set_association_state(
self,
input: Option<RouteTableAssociationState>,
) -> Self
pub fn set_association_state( self, input: Option<RouteTableAssociationState>, ) -> Self
The state of the association.
sourcepub fn get_association_state(&self) -> &Option<RouteTableAssociationState>
pub fn get_association_state(&self) -> &Option<RouteTableAssociationState>
The state of the association.
sourcepub fn build(self) -> AssociateRouteTableOutput
pub fn build(self) -> AssociateRouteTableOutput
Consumes the builder and constructs a AssociateRouteTableOutput
.
Trait Implementations§
source§impl Clone for AssociateRouteTableOutputBuilder
impl Clone for AssociateRouteTableOutputBuilder
source§fn clone(&self) -> AssociateRouteTableOutputBuilder
fn clone(&self) -> AssociateRouteTableOutputBuilder
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 AssociateRouteTableOutputBuilder
impl Default for AssociateRouteTableOutputBuilder
source§fn default() -> AssociateRouteTableOutputBuilder
fn default() -> AssociateRouteTableOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AssociateRouteTableOutputBuilder
impl PartialEq for AssociateRouteTableOutputBuilder
source§fn eq(&self, other: &AssociateRouteTableOutputBuilder) -> bool
fn eq(&self, other: &AssociateRouteTableOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociateRouteTableOutputBuilder
Auto Trait Implementations§
impl Freeze for AssociateRouteTableOutputBuilder
impl RefUnwindSafe for AssociateRouteTableOutputBuilder
impl Send for AssociateRouteTableOutputBuilder
impl Sync for AssociateRouteTableOutputBuilder
impl Unpin for AssociateRouteTableOutputBuilder
impl UnwindSafe for AssociateRouteTableOutputBuilder
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.