pub struct VpcIpamPoolCidrAllocationArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> VpcIpamPoolCidrAllocationArgsBuilder<S>
impl<S: State> VpcIpamPoolCidrAllocationArgsBuilder<S>
sourcepub fn build_struct(self) -> VpcIpamPoolCidrAllocationArgswhere
S: IsComplete,
pub fn build_struct(self) -> VpcIpamPoolCidrAllocationArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn cidr(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetCidr<S>>where
S::Cidr: IsUnset,
pub fn cidr(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetCidr<S>>where
S::Cidr: IsUnset,
sourcepub fn maybe_cidr(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetCidr<S>>where
S::Cidr: IsUnset,
pub fn maybe_cidr(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetCidr<S>>where
S::Cidr: IsUnset,
sourcepub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn disallowed_cidrs(
self,
value: impl Into<Output<Option<Vec<String>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDisallowedCidrs<S>>where
S::DisallowedCidrs: IsUnset,
pub fn disallowed_cidrs(
self,
value: impl Into<Output<Option<Vec<String>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDisallowedCidrs<S>>where
S::DisallowedCidrs: IsUnset,
sourcepub fn maybe_disallowed_cidrs(
self,
value: Option<impl Into<Output<Option<Vec<String>>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDisallowedCidrs<S>>where
S::DisallowedCidrs: IsUnset,
pub fn maybe_disallowed_cidrs(
self,
value: Option<impl Into<Output<Option<Vec<String>>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetDisallowedCidrs<S>>where
S::DisallowedCidrs: IsUnset,
sourcepub fn ipam_pool_id(
self,
value: impl Into<Output<String>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetIpamPoolId<S>>where
S::IpamPoolId: IsUnset,
pub fn ipam_pool_id(
self,
value: impl Into<Output<String>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetIpamPoolId<S>>where
S::IpamPoolId: IsUnset,
Required.
The ID of the pool to which you want to assign a CIDR.
sourcepub fn netmask_length(
self,
value: impl Into<Output<Option<i32>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetNetmaskLength<S>>where
S::NetmaskLength: IsUnset,
pub fn netmask_length(
self,
value: impl Into<Output<Option<i32>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetNetmaskLength<S>>where
S::NetmaskLength: IsUnset,
sourcepub fn maybe_netmask_length(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetNetmaskLength<S>>where
S::NetmaskLength: IsUnset,
pub fn maybe_netmask_length(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> VpcIpamPoolCidrAllocationArgsBuilder<SetNetmaskLength<S>>where
S::NetmaskLength: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for VpcIpamPoolCidrAllocationArgsBuilder<S>
impl<S> RefUnwindSafe for VpcIpamPoolCidrAllocationArgsBuilder<S>
impl<S> Send for VpcIpamPoolCidrAllocationArgsBuilder<S>
impl<S> Sync for VpcIpamPoolCidrAllocationArgsBuilder<S>
impl<S> Unpin for VpcIpamPoolCidrAllocationArgsBuilder<S>
impl<S> UnwindSafe for VpcIpamPoolCidrAllocationArgsBuilder<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