pub struct GetElasticIpArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetElasticIpArgsBuilder<S>
impl<S: State> GetElasticIpArgsBuilder<S>
sourcepub fn build_struct(self) -> GetElasticIpArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetElasticIpArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn filters(
self,
value: impl Into<Output<Option<Vec<GetElasticIpFilter>>>>,
) -> GetElasticIpArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn filters(
self,
value: impl Into<Output<Option<Vec<GetElasticIpFilter>>>>,
) -> GetElasticIpArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<Vec<super::super::super::types::ec2::GetElasticIpFilter>>,
> as Default>::default()
One or more name/value pairs to use as filters. There are several valid keys, for a full reference, check out the EC2 API Reference.
sourcepub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetElasticIpFilter>>>>>,
) -> GetElasticIpArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetElasticIpFilter>>>>>,
) -> GetElasticIpArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<Vec<super::super::super::types::ec2::GetElasticIpFilter>>,
> as Default>::default()
One or more name/value pairs to use as filters. There are several valid keys, for a full reference, check out the EC2 API Reference.
sourcepub fn id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetElasticIpArgsBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetElasticIpArgsBuilder<SetId<S>>where
S::Id: IsUnset,
sourcepub fn maybe_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetElasticIpArgsBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn maybe_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetElasticIpArgsBuilder<SetId<S>>where
S::Id: IsUnset,
sourcepub fn public_ip(
self,
value: impl Into<Output<Option<String>>>,
) -> GetElasticIpArgsBuilder<SetPublicIp<S>>where
S::PublicIp: IsUnset,
pub fn public_ip(
self,
value: impl Into<Output<Option<String>>>,
) -> GetElasticIpArgsBuilder<SetPublicIp<S>>where
S::PublicIp: IsUnset,
sourcepub fn maybe_public_ip(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetElasticIpArgsBuilder<SetPublicIp<S>>where
S::PublicIp: IsUnset,
pub fn maybe_public_ip(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetElasticIpArgsBuilder<SetPublicIp<S>>where
S::PublicIp: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetElasticIpArgsBuilder<S>
impl<S> RefUnwindSafe for GetElasticIpArgsBuilder<S>
impl<S> Send for GetElasticIpArgsBuilder<S>
impl<S> Sync for GetElasticIpArgsBuilder<S>
impl<S> Unpin for GetElasticIpArgsBuilder<S>
impl<S> UnwindSafe for GetElasticIpArgsBuilder<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