pub struct GetKeyPairArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetKeyPairArgsBuilder<S>
impl<S: State> GetKeyPairArgsBuilder<S>
sourcepub fn build_struct(self) -> GetKeyPairArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetKeyPairArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn filters(
self,
value: impl Into<Output<Option<Vec<GetKeyPairFilter>>>>,
) -> GetKeyPairArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn filters(
self,
value: impl Into<Output<Option<Vec<GetKeyPairFilter>>>>,
) -> GetKeyPairArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
sourcepub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetKeyPairFilter>>>>>,
) -> GetKeyPairArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
pub fn maybe_filters(
self,
value: Option<impl Into<Output<Option<Vec<GetKeyPairFilter>>>>>,
) -> GetKeyPairArgsBuilder<SetFilters<S>>where
S::Filters: IsUnset,
sourcepub fn include_public_key(
self,
value: impl Into<Output<Option<bool>>>,
) -> GetKeyPairArgsBuilder<SetIncludePublicKey<S>>where
S::IncludePublicKey: IsUnset,
pub fn include_public_key(
self,
value: impl Into<Output<Option<bool>>>,
) -> GetKeyPairArgsBuilder<SetIncludePublicKey<S>>where
S::IncludePublicKey: IsUnset,
sourcepub fn maybe_include_public_key(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> GetKeyPairArgsBuilder<SetIncludePublicKey<S>>where
S::IncludePublicKey: IsUnset,
pub fn maybe_include_public_key(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> GetKeyPairArgsBuilder<SetIncludePublicKey<S>>where
S::IncludePublicKey: IsUnset,
sourcepub fn key_name(
self,
value: impl Into<Output<Option<String>>>,
) -> GetKeyPairArgsBuilder<SetKeyName<S>>where
S::KeyName: IsUnset,
pub fn key_name(
self,
value: impl Into<Output<Option<String>>>,
) -> GetKeyPairArgsBuilder<SetKeyName<S>>where
S::KeyName: IsUnset,
sourcepub fn maybe_key_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetKeyPairArgsBuilder<SetKeyName<S>>where
S::KeyName: IsUnset,
pub fn maybe_key_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetKeyPairArgsBuilder<SetKeyName<S>>where
S::KeyName: IsUnset,
sourcepub fn key_pair_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetKeyPairArgsBuilder<SetKeyPairId<S>>where
S::KeyPairId: IsUnset,
pub fn key_pair_id(
self,
value: impl Into<Output<Option<String>>>,
) -> GetKeyPairArgsBuilder<SetKeyPairId<S>>where
S::KeyPairId: IsUnset,
sourcepub fn maybe_key_pair_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetKeyPairArgsBuilder<SetKeyPairId<S>>where
S::KeyPairId: IsUnset,
pub fn maybe_key_pair_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetKeyPairArgsBuilder<SetKeyPairId<S>>where
S::KeyPairId: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetKeyPairArgsBuilder<S>
impl<S> RefUnwindSafe for GetKeyPairArgsBuilder<S>
impl<S> Send for GetKeyPairArgsBuilder<S>
impl<S> Sync for GetKeyPairArgsBuilder<S>
impl<S> Unpin for GetKeyPairArgsBuilder<S>
impl<S> UnwindSafe for GetKeyPairArgsBuilder<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