#[non_exhaustive]pub struct DeleteAccessKeyInputBuilder { /* private fields */ }Expand description
A builder for DeleteAccessKeyInput.
Implementations§
source§impl DeleteAccessKeyInputBuilder
impl DeleteAccessKeyInputBuilder
sourcepub fn user_name(self, input: impl Into<String>) -> Self
pub fn user_name(self, input: impl Into<String>) -> Self
The name of the user whose access key pair you want to delete.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
sourcepub fn set_user_name(self, input: Option<String>) -> Self
pub fn set_user_name(self, input: Option<String>) -> Self
The name of the user whose access key pair you want to delete.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
sourcepub fn get_user_name(&self) -> &Option<String>
pub fn get_user_name(&self) -> &Option<String>
The name of the user whose access key pair you want to delete.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
sourcepub fn access_key_id(self, input: impl Into<String>) -> Self
pub fn access_key_id(self, input: impl Into<String>) -> Self
The access key ID for the access key ID and secret access key you want to delete.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
This field is required.sourcepub fn set_access_key_id(self, input: Option<String>) -> Self
pub fn set_access_key_id(self, input: Option<String>) -> Self
The access key ID for the access key ID and secret access key you want to delete.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
sourcepub fn get_access_key_id(&self) -> &Option<String>
pub fn get_access_key_id(&self) -> &Option<String>
The access key ID for the access key ID and secret access key you want to delete.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
sourcepub fn build(self) -> Result<DeleteAccessKeyInput, BuildError>
pub fn build(self) -> Result<DeleteAccessKeyInput, BuildError>
Consumes the builder and constructs a DeleteAccessKeyInput.
source§impl DeleteAccessKeyInputBuilder
impl DeleteAccessKeyInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteAccessKeyOutput, SdkError<DeleteAccessKeyError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteAccessKeyOutput, SdkError<DeleteAccessKeyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteAccessKeyInputBuilder
impl Clone for DeleteAccessKeyInputBuilder
source§fn clone(&self) -> DeleteAccessKeyInputBuilder
fn clone(&self) -> DeleteAccessKeyInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteAccessKeyInputBuilder
impl Debug for DeleteAccessKeyInputBuilder
source§impl Default for DeleteAccessKeyInputBuilder
impl Default for DeleteAccessKeyInputBuilder
source§fn default() -> DeleteAccessKeyInputBuilder
fn default() -> DeleteAccessKeyInputBuilder
source§impl PartialEq for DeleteAccessKeyInputBuilder
impl PartialEq for DeleteAccessKeyInputBuilder
source§fn eq(&self, other: &DeleteAccessKeyInputBuilder) -> bool
fn eq(&self, other: &DeleteAccessKeyInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteAccessKeyInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteAccessKeyInputBuilder
impl RefUnwindSafe for DeleteAccessKeyInputBuilder
impl Send for DeleteAccessKeyInputBuilder
impl Sync for DeleteAccessKeyInputBuilder
impl Unpin for DeleteAccessKeyInputBuilder
impl UnwindSafe for DeleteAccessKeyInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more