Struct aws_sdk_workmail::input::DeleteAliasInput [−][src]
#[non_exhaustive]pub struct DeleteAliasInput {
pub organization_id: Option<String>,
pub entity_id: Option<String>,
pub alias: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.organization_id: Option<String>
The identifier for the organization under which the user exists.
entity_id: Option<String>
The identifier for the member (user or group) from which to have the aliases removed.
alias: Option<String>
The aliases to be removed from the user's set of aliases. Duplicate entries in the list are collapsed into single entries (the list is transformed into a set).
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteAlias, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteAlias, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteAlias
>
Creates a new builder-style object to manufacture DeleteAliasInput
The identifier for the organization under which the user exists.
The identifier for the member (user or group) from which to have the aliases removed.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DeleteAliasInput
impl Send for DeleteAliasInput
impl Sync for DeleteAliasInput
impl Unpin for DeleteAliasInput
impl UnwindSafe for DeleteAliasInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more