#[non_exhaustive]pub struct AttachSecurityProfileInput {
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 attached.
security_profile_target_arn: Option<String>
The ARN of the target (thing group) to which the security profile is attached.
Implementations§
source§impl AttachSecurityProfileInput
impl AttachSecurityProfileInput
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The security profile that is attached.
sourcepub fn security_profile_target_arn(&self) -> Option<&str>
pub fn security_profile_target_arn(&self) -> Option<&str>
The ARN of the target (thing group) to which the security profile is attached.
source§impl AttachSecurityProfileInput
impl AttachSecurityProfileInput
sourcepub fn builder() -> AttachSecurityProfileInputBuilder
pub fn builder() -> AttachSecurityProfileInputBuilder
Creates a new builder-style object to manufacture AttachSecurityProfileInput
.
Trait Implementations§
source§impl Clone for AttachSecurityProfileInput
impl Clone for AttachSecurityProfileInput
source§fn clone(&self) -> AttachSecurityProfileInput
fn clone(&self) -> AttachSecurityProfileInput
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 AttachSecurityProfileInput
impl Debug for AttachSecurityProfileInput
source§impl PartialEq for AttachSecurityProfileInput
impl PartialEq for AttachSecurityProfileInput
source§fn eq(&self, other: &AttachSecurityProfileInput) -> bool
fn eq(&self, other: &AttachSecurityProfileInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AttachSecurityProfileInput
Auto Trait Implementations§
impl RefUnwindSafe for AttachSecurityProfileInput
impl Send for AttachSecurityProfileInput
impl Sync for AttachSecurityProfileInput
impl Unpin for AttachSecurityProfileInput
impl UnwindSafe for AttachSecurityProfileInput
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.