pub struct RouteTableAssociationArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> RouteTableAssociationArgsBuilder<S>
impl<S: State> RouteTableAssociationArgsBuilder<S>
sourcepub fn build_struct(self) -> RouteTableAssociationArgswhere
S: IsComplete,
pub fn build_struct(self) -> RouteTableAssociationArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn gateway_id(
self,
value: impl Into<Output<Option<String>>>,
) -> RouteTableAssociationArgsBuilder<SetGatewayId<S>>where
S::GatewayId: IsUnset,
pub fn gateway_id(
self,
value: impl Into<Output<Option<String>>>,
) -> RouteTableAssociationArgsBuilder<SetGatewayId<S>>where
S::GatewayId: IsUnset,
sourcepub fn maybe_gateway_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> RouteTableAssociationArgsBuilder<SetGatewayId<S>>where
S::GatewayId: IsUnset,
pub fn maybe_gateway_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> RouteTableAssociationArgsBuilder<SetGatewayId<S>>where
S::GatewayId: IsUnset,
sourcepub fn route_table_id(
self,
value: impl Into<Output<String>>,
) -> RouteTableAssociationArgsBuilder<SetRouteTableId<S>>where
S::RouteTableId: IsUnset,
pub fn route_table_id(
self,
value: impl Into<Output<String>>,
) -> RouteTableAssociationArgsBuilder<SetRouteTableId<S>>where
S::RouteTableId: IsUnset,
Required.
The ID of the routing table to associate with.
sourcepub fn subnet_id(
self,
value: impl Into<Output<Option<String>>>,
) -> RouteTableAssociationArgsBuilder<SetSubnetId<S>>where
S::SubnetId: IsUnset,
pub fn subnet_id(
self,
value: impl Into<Output<Option<String>>>,
) -> RouteTableAssociationArgsBuilder<SetSubnetId<S>>where
S::SubnetId: IsUnset,
sourcepub fn maybe_subnet_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> RouteTableAssociationArgsBuilder<SetSubnetId<S>>where
S::SubnetId: IsUnset,
pub fn maybe_subnet_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> RouteTableAssociationArgsBuilder<SetSubnetId<S>>where
S::SubnetId: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for RouteTableAssociationArgsBuilder<S>
impl<S> RefUnwindSafe for RouteTableAssociationArgsBuilder<S>
impl<S> Send for RouteTableAssociationArgsBuilder<S>
impl<S> Sync for RouteTableAssociationArgsBuilder<S>
impl<S> Unpin for RouteTableAssociationArgsBuilder<S>
impl<S> UnwindSafe for RouteTableAssociationArgsBuilder<S>
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