Struct aws_sdk_iot::input::UpdateSecurityProfileInput
source · #[non_exhaustive]pub struct UpdateSecurityProfileInput { /* private fields */ }
Implementations§
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
>
Examples found in repository?
27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateSecurityProfile,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::UpdateSecurityProfileError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::UpdateSecurityProfileOutput,
aws_smithy_http::result::SdkError<crate::error::UpdateSecurityProfileError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateSecurityProfileInput
.
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) -> bool
pub fn delete_behaviors(&self) -> 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) -> bool
pub fn delete_alert_targets(&self) -> 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) -> bool
pub fn delete_additional_metrics_to_retain(&self) -> 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.
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 more