pub struct SharedVPCServiceProjectArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
sourcepub fn build_struct(self) -> SharedVPCServiceProjectArgswhere
S: IsComplete,
pub fn build_struct(self) -> SharedVPCServiceProjectArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn deletion_policy(
self,
value: impl Into<Output<Option<String>>>,
) -> SharedVPCServiceProjectArgsBuilder<SetDeletionPolicy<S>>where
S::DeletionPolicy: IsUnset,
pub fn deletion_policy(
self,
value: impl Into<Output<Option<String>>>,
) -> SharedVPCServiceProjectArgsBuilder<SetDeletionPolicy<S>>where
S::DeletionPolicy: IsUnset,
sourcepub fn maybe_deletion_policy(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SharedVPCServiceProjectArgsBuilder<SetDeletionPolicy<S>>where
S::DeletionPolicy: IsUnset,
pub fn maybe_deletion_policy(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SharedVPCServiceProjectArgsBuilder<SetDeletionPolicy<S>>where
S::DeletionPolicy: IsUnset,
sourcepub fn host_project(
self,
value: impl Into<Output<String>>,
) -> SharedVPCServiceProjectArgsBuilder<SetHostProject<S>>where
S::HostProject: IsUnset,
pub fn host_project(
self,
value: impl Into<Output<String>>,
) -> SharedVPCServiceProjectArgsBuilder<SetHostProject<S>>where
S::HostProject: IsUnset,
Required.
The ID of a host project to associate.
sourcepub fn service_project(
self,
value: impl Into<Output<String>>,
) -> SharedVPCServiceProjectArgsBuilder<SetServiceProject<S>>where
S::ServiceProject: IsUnset,
pub fn service_project(
self,
value: impl Into<Output<String>>,
) -> SharedVPCServiceProjectArgsBuilder<SetServiceProject<S>>where
S::ServiceProject: IsUnset,
Required.
The ID of the project that will serve as a Shared VPC service project.
Auto Trait Implementations§
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