pub struct GetInternetGatewayArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetInternetGatewayArgsBuilder<S>
impl<S: State> GetInternetGatewayArgsBuilder<S>
sourcepub fn build_struct(self) -> GetInternetGatewayArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetInternetGatewayArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn filters(
self,
value: impl Into<Output<Option<Vec<GetInternetGatewayFilter>>>>,
) -> GetInternetGatewayArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn filters(
self,
value: impl Into<Output<Option<Vec<GetInternetGatewayFilter>>>>,
) -> GetInternetGatewayArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<Vec<super::super::super::types::ec2::GetInternetGatewayFilter>>,
> as Default>::default()
Custom filter block as described below.
More complex filters can be expressed using one or more filter
sub-blocks,
which take the following arguments:
sourcepub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetInternetGatewayFilter>>>>>,
) -> GetInternetGatewayArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetInternetGatewayFilter>>>>>,
) -> GetInternetGatewayArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<Vec<super::super::super::types::ec2::GetInternetGatewayFilter>>,
> as Default>::default()
Custom filter block as described below.
More complex filters can be expressed using one or more filter
sub-blocks,
which take the following arguments:
sourcepub fn internet_gateway_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetInternetGatewayArgsBuilder<SetInternetGatewayId<S>>where
S::InternetGatewayId: IsUnset,
pub fn internet_gateway_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetInternetGatewayArgsBuilder<SetInternetGatewayId<S>>where
S::InternetGatewayId: IsUnset,
sourcepub fn maybe_internet_gateway_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetInternetGatewayArgsBuilder<SetInternetGatewayId<S>>where
S::InternetGatewayId: IsUnset,
pub fn maybe_internet_gateway_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetInternetGatewayArgsBuilder<SetInternetGatewayId<S>>where
S::InternetGatewayId: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetInternetGatewayArgsBuilder<S>
impl<S> RefUnwindSafe for GetInternetGatewayArgsBuilder<S>
impl<S> Send for GetInternetGatewayArgsBuilder<S>
impl<S> Sync for GetInternetGatewayArgsBuilder<S>
impl<S> Unpin for GetInternetGatewayArgsBuilder<S>
impl<S> UnwindSafe for GetInternetGatewayArgsBuilder<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