Struct aws_sdk_iot::output::UpdateSecurityProfileOutput
source · [−]#[non_exhaustive]pub struct UpdateSecurityProfileOutput { /* private fields */ }
Implementations
sourceimpl UpdateSecurityProfileOutput
impl UpdateSecurityProfileOutput
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The name of the security profile that was updated.
sourcepub fn security_profile_arn(&self) -> Option<&str>
pub fn security_profile_arn(&self) -> Option<&str>
The ARN of the security profile that was updated.
sourcepub fn security_profile_description(&self) -> Option<&str>
pub fn security_profile_description(&self) -> Option<&str>
The description of the security profile.
sourcepub fn behaviors(&self) -> Option<&[Behavior]>
pub fn behaviors(&self) -> Option<&[Behavior]>
Specifies the behaviors that, when violated by a device (thing), cause an alert.
sourcepub fn alert_targets(&self) -> Option<&HashMap<AlertTargetType, AlertTarget>>
pub fn alert_targets(&self) -> Option<&HashMap<AlertTargetType, AlertTarget>>
Where the alerts are sent. (Alerts are always sent to the console.)
sourcepub fn additional_metrics_to_retain(&self) -> Option<&[String]>
👎Deprecated: Use additionalMetricsToRetainV2.
pub fn additional_metrics_to_retain(&self) -> Option<&[String]>
Use additionalMetricsToRetainV2.
Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2
instead.
A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors
, but it is also retained for any metric specified here.
sourcepub fn additional_metrics_to_retain_v2(&self) -> Option<&[MetricToRetain]>
pub fn additional_metrics_to_retain_v2(&self) -> Option<&[MetricToRetain]>
A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The time the security profile was created.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The time the security profile was last modified.
sourceimpl UpdateSecurityProfileOutput
impl UpdateSecurityProfileOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateSecurityProfileOutput
.
Trait Implementations
sourceimpl Clone for UpdateSecurityProfileOutput
impl Clone for UpdateSecurityProfileOutput
sourcefn clone(&self) -> UpdateSecurityProfileOutput
fn clone(&self) -> UpdateSecurityProfileOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateSecurityProfileOutput
impl Debug for UpdateSecurityProfileOutput
sourceimpl PartialEq<UpdateSecurityProfileOutput> for UpdateSecurityProfileOutput
impl PartialEq<UpdateSecurityProfileOutput> for UpdateSecurityProfileOutput
sourcefn eq(&self, other: &UpdateSecurityProfileOutput) -> bool
fn eq(&self, other: &UpdateSecurityProfileOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for UpdateSecurityProfileOutput
Auto Trait Implementations
impl RefUnwindSafe for UpdateSecurityProfileOutput
impl Send for UpdateSecurityProfileOutput
impl Sync for UpdateSecurityProfileOutput
impl Unpin for UpdateSecurityProfileOutput
impl UnwindSafe for UpdateSecurityProfileOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more