pub struct VpnGatewayRoutePropagationArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> VpnGatewayRoutePropagationArgsBuilder<S>
impl<S: State> VpnGatewayRoutePropagationArgsBuilder<S>
sourcepub fn build_struct(self) -> VpnGatewayRoutePropagationArgswhere
S: IsComplete,
pub fn build_struct(self) -> VpnGatewayRoutePropagationArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn route_table_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayRoutePropagationArgsBuilder<SetRouteTableId<S>>where
S::RouteTableId: IsUnset,
pub fn route_table_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayRoutePropagationArgsBuilder<SetRouteTableId<S>>where
S::RouteTableId: IsUnset,
Required.
The id of the aws.ec2.RouteTable
to propagate routes into.
sourcepub fn vpn_gateway_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayRoutePropagationArgsBuilder<SetVpnGatewayId<S>>where
S::VpnGatewayId: IsUnset,
pub fn vpn_gateway_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayRoutePropagationArgsBuilder<SetVpnGatewayId<S>>where
S::VpnGatewayId: IsUnset,
Required.
The id of the aws.ec2.VpnGateway
to propagate routes from.
Auto Trait Implementations§
impl<S> Freeze for VpnGatewayRoutePropagationArgsBuilder<S>
impl<S> RefUnwindSafe for VpnGatewayRoutePropagationArgsBuilder<S>
impl<S> Send for VpnGatewayRoutePropagationArgsBuilder<S>
impl<S> Sync for VpnGatewayRoutePropagationArgsBuilder<S>
impl<S> Unpin for VpnGatewayRoutePropagationArgsBuilder<S>
impl<S> UnwindSafe for VpnGatewayRoutePropagationArgsBuilder<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