#[non_exhaustive]pub struct UpdateSecurityProfileInput { /* private fields */ }Implementations§
source§impl UpdateSecurityProfileInput
impl UpdateSecurityProfileInput
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The name of the security profile you want to update.
sourcepub fn security_profile_description(&self) -> Option<&str>
pub fn security_profile_description(&self) -> Option<&str>
A 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]>
Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead.
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 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 delete_behaviors(&self) -> Option<bool>
pub fn delete_behaviors(&self) -> Option<bool>
If true, delete all behaviors defined for this security profile. If any behaviors are defined in the current invocation, an exception occurs.
sourcepub fn delete_alert_targets(&self) -> Option<bool>
pub fn delete_alert_targets(&self) -> Option<bool>
If true, delete all alertTargets defined for this security profile. If any alertTargets are defined in the current invocation, an exception occurs.
sourcepub fn delete_additional_metrics_to_retain(&self) -> Option<bool>
pub fn delete_additional_metrics_to_retain(&self) -> Option<bool>
If true, delete all additionalMetricsToRetain defined for this security profile. If any additionalMetricsToRetain are defined in the current invocation, an exception occurs.
sourcepub fn expected_version(&self) -> Option<i64>
pub fn expected_version(&self) -> 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.
source§impl UpdateSecurityProfileInput
impl UpdateSecurityProfileInput
sourcepub fn builder() -> UpdateSecurityProfileInputBuilder
pub fn builder() -> UpdateSecurityProfileInputBuilder
Creates a new builder-style object to manufacture UpdateSecurityProfileInput.
source§impl UpdateSecurityProfileInput
impl UpdateSecurityProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSecurityProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateSecurityProfile, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSecurityProfile>
Trait Implementations§
source§impl Clone for UpdateSecurityProfileInput
impl Clone for UpdateSecurityProfileInput
source§fn clone(&self) -> UpdateSecurityProfileInput
fn clone(&self) -> UpdateSecurityProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateSecurityProfileInput
impl Debug for UpdateSecurityProfileInput
source§impl PartialEq<UpdateSecurityProfileInput> for UpdateSecurityProfileInput
impl PartialEq<UpdateSecurityProfileInput> for UpdateSecurityProfileInput
source§fn eq(&self, other: &UpdateSecurityProfileInput) -> bool
fn eq(&self, other: &UpdateSecurityProfileInput) -> bool
self and other values to be equal, and is used
by ==.