#[non_exhaustive]pub struct DetachSecurityProfileInput {
pub security_profile_name: Option<String>,
pub security_profile_target_arn: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.security_profile_name: Option<String>The security profile that is detached.
security_profile_target_arn: Option<String>The ARN of the thing group from which the security profile is detached.
Implementations§
source§impl DetachSecurityProfileInput
impl DetachSecurityProfileInput
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The security profile that is detached.
sourcepub fn security_profile_target_arn(&self) -> Option<&str>
pub fn security_profile_target_arn(&self) -> Option<&str>
The ARN of the thing group from which the security profile is detached.
source§impl DetachSecurityProfileInput
impl DetachSecurityProfileInput
sourcepub fn builder() -> DetachSecurityProfileInputBuilder
pub fn builder() -> DetachSecurityProfileInputBuilder
Creates a new builder-style object to manufacture DetachSecurityProfileInput.
Trait Implementations§
source§impl Clone for DetachSecurityProfileInput
impl Clone for DetachSecurityProfileInput
source§fn clone(&self) -> DetachSecurityProfileInput
fn clone(&self) -> DetachSecurityProfileInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DetachSecurityProfileInput
impl Debug for DetachSecurityProfileInput
source§impl PartialEq for DetachSecurityProfileInput
impl PartialEq for DetachSecurityProfileInput
source§fn eq(&self, other: &DetachSecurityProfileInput) -> bool
fn eq(&self, other: &DetachSecurityProfileInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DetachSecurityProfileInput
Auto Trait Implementations§
impl RefUnwindSafe for DetachSecurityProfileInput
impl Send for DetachSecurityProfileInput
impl Sync for DetachSecurityProfileInput
impl Unpin for DetachSecurityProfileInput
impl UnwindSafe for DetachSecurityProfileInput
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
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>
Creates a shared type from an unshared type.