pub struct HmacKeyArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> HmacKeyArgsBuilder<S>
impl<S: State> HmacKeyArgsBuilder<S>
sourcepub fn build_struct(self) -> HmacKeyArgswhere
S: IsComplete,
pub fn build_struct(self) -> HmacKeyArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn project(
self,
value: impl Into<Output<Option<String>>>,
) -> HmacKeyArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
pub fn project(
self,
value: impl Into<Output<Option<String>>>,
) -> HmacKeyArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
sourcepub fn maybe_project(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HmacKeyArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
pub fn maybe_project(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HmacKeyArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
sourcepub fn service_account_email(
self,
value: impl Into<Output<String>>,
) -> HmacKeyArgsBuilder<SetServiceAccountEmail<S>>where
S::ServiceAccountEmail: IsUnset,
pub fn service_account_email(
self,
value: impl Into<Output<String>>,
) -> HmacKeyArgsBuilder<SetServiceAccountEmail<S>>where
S::ServiceAccountEmail: IsUnset,
Required.
The email address of the key’s associated service account.
sourcepub fn state(
self,
value: impl Into<Output<Option<String>>>,
) -> HmacKeyArgsBuilder<SetState<S>>where
S::State: IsUnset,
pub fn state(
self,
value: impl Into<Output<Option<String>>>,
) -> HmacKeyArgsBuilder<SetState<S>>where
S::State: IsUnset,
sourcepub fn maybe_state(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HmacKeyArgsBuilder<SetState<S>>where
S::State: IsUnset,
pub fn maybe_state(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HmacKeyArgsBuilder<SetState<S>>where
S::State: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for HmacKeyArgsBuilder<S>
impl<S> RefUnwindSafe for HmacKeyArgsBuilder<S>
impl<S> Send for HmacKeyArgsBuilder<S>
impl<S> Sync for HmacKeyArgsBuilder<S>
impl<S> Unpin for HmacKeyArgsBuilder<S>
impl<S> UnwindSafe for HmacKeyArgsBuilder<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