Struct aws_sdk_iot::input::DeleteSecurityProfileInput [−][src]
#[non_exhaustive]pub struct DeleteSecurityProfileInput {
pub security_profile_name: Option<String>,
pub expected_version: Option<i64>,
}
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.security_profile_name: Option<String>
The name of the security profile to be deleted.
expected_version: Option<i64>
The expected version of the security profile. A new version is generated whenever
the security profile is updated. If you specify a value that is different from the actual
version, a VersionConflictException
is thrown.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteSecurityProfile, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteSecurityProfile, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteSecurityProfile
>
Creates a new builder-style object to manufacture DeleteSecurityProfileInput
The name of the security profile to be deleted.
The expected version of the security profile. A new version is generated whenever
the security profile is updated. If you specify a value that is different from the actual
version, a VersionConflictException
is thrown.
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 DeleteSecurityProfileInput
impl Send for DeleteSecurityProfileInput
impl Sync for DeleteSecurityProfileInput
impl Unpin for DeleteSecurityProfileInput
impl UnwindSafe for DeleteSecurityProfileInput
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