pub struct GetRouteTablesArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetRouteTablesArgsBuilder<S>
impl<S: State> GetRouteTablesArgsBuilder<S>
sourcepub fn build_struct(self) -> GetRouteTablesArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetRouteTablesArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn filters(
self,
value: impl Into<Output<Option<Vec<GetRouteTablesFilter>>>>,
) -> GetRouteTablesArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn filters(
self,
value: impl Into<Output<Option<Vec<GetRouteTablesFilter>>>>,
) -> GetRouteTablesArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
sourcepub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetRouteTablesFilter>>>>>,
) -> GetRouteTablesArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetRouteTablesFilter>>>>>,
) -> GetRouteTablesArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<std::collections::HashMap<String, String>>,
> as Default>::default()
Map of tags, each pair of which must exactly match a pair on the desired route tables.
More complex filters can be expressed using one or more filter
sub-blocks,
which take the following arguments:
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<std::collections::HashMap<String, String>>,
> as Default>::default()
Map of tags, each pair of which must exactly match a pair on the desired route tables.
More complex filters can be expressed using one or more filter
sub-blocks,
which take the following arguments:
sourcepub fn vpc_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetRouteTablesArgsBuilder<SetVpcId<S>>where
S::VpcId: IsUnset,
pub fn vpc_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetRouteTablesArgsBuilder<SetVpcId<S>>where
S::VpcId: IsUnset,
sourcepub fn maybe_vpc_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetRouteTablesArgsBuilder<SetVpcId<S>>where
S::VpcId: IsUnset,
pub fn maybe_vpc_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetRouteTablesArgsBuilder<SetVpcId<S>>where
S::VpcId: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetRouteTablesArgsBuilder<S>
impl<S> RefUnwindSafe for GetRouteTablesArgsBuilder<S>
impl<S> Send for GetRouteTablesArgsBuilder<S>
impl<S> Sync for GetRouteTablesArgsBuilder<S>
impl<S> Unpin for GetRouteTablesArgsBuilder<S>
impl<S> UnwindSafe for GetRouteTablesArgsBuilder<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