pub struct GetVpcArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetVpcArgsBuilder<S>
impl<S: State> GetVpcArgsBuilder<S>
sourcepub fn build_struct(self) -> GetVpcArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetVpcArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn cidr_block(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetCidrBlock<S>>where
S::CidrBlock: IsUnset,
pub fn cidr_block(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetCidrBlock<S>>where
S::CidrBlock: IsUnset,
sourcepub fn maybe_cidr_block(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetCidrBlock<S>>where
S::CidrBlock: IsUnset,
pub fn maybe_cidr_block(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetCidrBlock<S>>where
S::CidrBlock: IsUnset,
sourcepub fn default(
self,
value: impl Into<Output<Option<bool>>>,
) -> GetVpcArgsBuilder<SetDefault<S>>where
S::Default: IsUnset,
pub fn default(
self,
value: impl Into<Output<Option<bool>>>,
) -> GetVpcArgsBuilder<SetDefault<S>>where
S::Default: IsUnset,
sourcepub fn maybe_default(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> GetVpcArgsBuilder<SetDefault<S>>where
S::Default: IsUnset,
pub fn maybe_default(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> GetVpcArgsBuilder<SetDefault<S>>where
S::Default: IsUnset,
sourcepub fn dhcp_options_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetDhcpOptionsId<S>>where
S::DhcpOptionsId: IsUnset,
pub fn dhcp_options_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetDhcpOptionsId<S>>where
S::DhcpOptionsId: IsUnset,
sourcepub fn maybe_dhcp_options_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetDhcpOptionsId<S>>where
S::DhcpOptionsId: IsUnset,
pub fn maybe_dhcp_options_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetDhcpOptionsId<S>>where
S::DhcpOptionsId: IsUnset,
sourcepub fn filters(
self,
value: impl Into<Output<Option<Vec<GetVpcFilter>>>>,
) -> GetVpcArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn filters(
self,
value: impl Into<Output<Option<Vec<GetVpcFilter>>>>,
) -> GetVpcArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
sourcepub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetVpcFilter>>>>>,
) -> GetVpcArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetVpcFilter>>>>>,
) -> GetVpcArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
sourcepub fn id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetId<S>>where
S::Id: IsUnset,
sourcepub fn maybe_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn maybe_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetId<S>>where
S::Id: IsUnset,
sourcepub fn state(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetState<S>>where
S::State: IsUnset,
pub fn state(
self,
value: impl Into<Output<Option<String>>>,
) -> GetVpcArgsBuilder<SetState<S>>where
S::State: IsUnset,
sourcepub fn maybe_state(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetState<S>>where
S::State: IsUnset,
pub fn maybe_state(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetVpcArgsBuilder<SetState<S>>where
S::State: 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 VPC.
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 VPC.
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 GetVpcArgsBuilder<S>
impl<S> RefUnwindSafe for GetVpcArgsBuilder<S>
impl<S> Send for GetVpcArgsBuilder<S>
impl<S> Sync for GetVpcArgsBuilder<S>
impl<S> Unpin for GetVpcArgsBuilder<S>
impl<S> UnwindSafe for GetVpcArgsBuilder<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