pub struct CreateRequestBuilder<P2 = Value, S: State = Empty>where
P2: DeserializeOwned + Serialize,{ /* private fields */ }Available on crate feature
cloudformation only.Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<P2, S: State> CreateRequestBuilder<P2, S>where
P2: DeserializeOwned + Serialize,
impl<P2, S: State> CreateRequestBuilder<P2, S>where
P2: DeserializeOwned + Serialize,
Sourcepub fn build(self) -> CreateRequest<P2>where
S: IsComplete,
pub fn build(self) -> CreateRequest<P2>where
S: IsComplete,
Finish building and return the requested object
Sourcepub fn common(
self,
value: CommonRequestParams<P2>,
) -> CreateRequestBuilder<P2, SetCommon<S>>where
S::Common: IsUnset,
pub fn common(
self,
value: CommonRequestParams<P2>,
) -> CreateRequestBuilder<P2, SetCommon<S>>where
S::Common: IsUnset,
Required.
Auto Trait Implementations§
impl<P2, S> Freeze for CreateRequestBuilder<P2, S>where
P2: Freeze,
impl<P2, S> RefUnwindSafe for CreateRequestBuilder<P2, S>where
P2: RefUnwindSafe,
impl<P2, S> Send for CreateRequestBuilder<P2, S>where
P2: Send,
impl<P2, S> Sync for CreateRequestBuilder<P2, S>where
P2: Sync,
impl<P2, S> Unpin for CreateRequestBuilder<P2, S>where
P2: Unpin,
impl<P2, S> UnsafeUnpin for CreateRequestBuilder<P2, S>where
P2: UnsafeUnpin,
impl<P2, S> UnwindSafe for CreateRequestBuilder<P2, S>where
P2: UnwindSafe,
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