pub struct DefaultRouteTableArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> DefaultRouteTableArgsBuilder<S>
impl<S: State> DefaultRouteTableArgsBuilder<S>
sourcepub fn build_struct(self) -> DefaultRouteTableArgswhere
S: IsComplete,
pub fn build_struct(self) -> DefaultRouteTableArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn default_route_table_id(
self,
value: impl Into<Output<String>>,
) -> DefaultRouteTableArgsBuilder<SetDefaultRouteTableId<S>>where
S::DefaultRouteTableId: IsUnset,
pub fn default_route_table_id(
self,
value: impl Into<Output<String>>,
) -> DefaultRouteTableArgsBuilder<SetDefaultRouteTableId<S>>where
S::DefaultRouteTableId: IsUnset,
Required.
ID of the default route table.
The following arguments are optional:
sourcepub fn propagating_vgws(
self,
value: impl Into<Output<Option<Vec<String>>>>,
) -> DefaultRouteTableArgsBuilder<SetPropagatingVgws<S>>where
S::PropagatingVgws: IsUnset,
pub fn propagating_vgws(
self,
value: impl Into<Output<Option<Vec<String>>>>,
) -> DefaultRouteTableArgsBuilder<SetPropagatingVgws<S>>where
S::PropagatingVgws: IsUnset,
sourcepub fn maybe_propagating_vgws(
self,
value: Option<impl Into<Output<Option<Vec<String>>>>>,
) -> DefaultRouteTableArgsBuilder<SetPropagatingVgws<S>>where
S::PropagatingVgws: IsUnset,
pub fn maybe_propagating_vgws(
self,
value: Option<impl Into<Output<Option<Vec<String>>>>>,
) -> DefaultRouteTableArgsBuilder<SetPropagatingVgws<S>>where
S::PropagatingVgws: IsUnset,
sourcepub fn routes(
self,
value: impl Into<Output<Option<Vec<DefaultRouteTableRoute>>>>,
) -> DefaultRouteTableArgsBuilder<SetRoutes<S>>where
S::Routes: IsUnset,
pub fn routes(
self,
value: impl Into<Output<Option<Vec<DefaultRouteTableRoute>>>>,
) -> DefaultRouteTableArgsBuilder<SetRoutes<S>>where
S::Routes: IsUnset,
sourcepub fn maybe_routes(
self,
value: Option<impl Into<Output<Option<Vec<DefaultRouteTableRoute>>>>>,
) -> DefaultRouteTableArgsBuilder<SetRoutes<S>>where
S::Routes: IsUnset,
pub fn maybe_routes(
self,
value: Option<impl Into<Output<Option<Vec<DefaultRouteTableRoute>>>>>,
) -> DefaultRouteTableArgsBuilder<SetRoutes<S>>where
S::Routes: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<std::collections::HashMap<String, String>>,
> as Default>::default()
Map of tags to assign to the resource. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<std::collections::HashMap<String, String>>,
> as Default>::default()
Map of tags to assign to the resource. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Auto Trait Implementations§
impl<S> Freeze for DefaultRouteTableArgsBuilder<S>
impl<S> RefUnwindSafe for DefaultRouteTableArgsBuilder<S>
impl<S> Send for DefaultRouteTableArgsBuilder<S>
impl<S> Sync for DefaultRouteTableArgsBuilder<S>
impl<S> Unpin for DefaultRouteTableArgsBuilder<S>
impl<S> UnwindSafe for DefaultRouteTableArgsBuilder<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