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