pub struct VpnGatewayAttachmentArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> VpnGatewayAttachmentArgsBuilder<S>
impl<S: State> VpnGatewayAttachmentArgsBuilder<S>
sourcepub fn build_struct(self) -> VpnGatewayAttachmentArgswhere
S: IsComplete,
pub fn build_struct(self) -> VpnGatewayAttachmentArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn vpc_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayAttachmentArgsBuilder<SetVpcId<S>>where
S::VpcId: IsUnset,
pub fn vpc_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayAttachmentArgsBuilder<SetVpcId<S>>where
S::VpcId: IsUnset,
Required.
The ID of the VPC.
sourcepub fn vpn_gateway_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayAttachmentArgsBuilder<SetVpnGatewayId<S>>where
S::VpnGatewayId: IsUnset,
pub fn vpn_gateway_id(
self,
value: impl Into<Output<String>>,
) -> VpnGatewayAttachmentArgsBuilder<SetVpnGatewayId<S>>where
S::VpnGatewayId: IsUnset,
Required.
The ID of the Virtual Private Gateway.
Auto Trait Implementations§
impl<S> Freeze for VpnGatewayAttachmentArgsBuilder<S>
impl<S> RefUnwindSafe for VpnGatewayAttachmentArgsBuilder<S>
impl<S> Send for VpnGatewayAttachmentArgsBuilder<S>
impl<S> Sync for VpnGatewayAttachmentArgsBuilder<S>
impl<S> Unpin for VpnGatewayAttachmentArgsBuilder<S>
impl<S> UnwindSafe for VpnGatewayAttachmentArgsBuilder<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