Struct aws_sdk_iot::input::create_security_profile_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CreateSecurityProfileInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn security_profile_name(self, input: impl Into<String>) -> Self
pub fn security_profile_name(self, input: impl Into<String>) -> Self
The name you are giving to the security profile.
sourcepub fn set_security_profile_name(self, input: Option<String>) -> Self
pub fn set_security_profile_name(self, input: Option<String>) -> Self
The name you are giving to the security profile.
sourcepub fn security_profile_description(self, input: impl Into<String>) -> Self
pub fn security_profile_description(self, input: impl Into<String>) -> Self
A description of the security profile.
sourcepub fn set_security_profile_description(self, input: Option<String>) -> Self
pub fn set_security_profile_description(self, input: Option<String>) -> Self
A description of the security profile.
sourcepub fn behaviors(self, input: Behavior) -> Self
pub fn behaviors(self, input: Behavior) -> Self
Appends an item to behaviors
.
To override the contents of this collection use set_behaviors
.
Specifies the behaviors that, when violated by a device (thing), cause an alert.
sourcepub fn set_behaviors(self, input: Option<Vec<Behavior>>) -> Self
pub fn set_behaviors(self, input: Option<Vec<Behavior>>) -> Self
Specifies the behaviors that, when violated by a device (thing), cause an alert.
sourcepub fn alert_targets(self, k: AlertTargetType, v: AlertTarget) -> Self
pub fn alert_targets(self, k: AlertTargetType, v: AlertTarget) -> Self
Adds a key-value pair to alert_targets
.
To override the contents of this collection use set_alert_targets
.
Specifies the destinations to which alerts are sent. (Alerts are always sent to the console.) Alerts are generated when a device (thing) violates a behavior.
sourcepub fn set_alert_targets(
self,
input: Option<HashMap<AlertTargetType, AlertTarget>>
) -> Self
pub fn set_alert_targets(
self,
input: Option<HashMap<AlertTargetType, AlertTarget>>
) -> Self
Specifies the destinations to which alerts are sent. (Alerts are always sent to the console.) Alerts are generated when a device (thing) violates a behavior.
sourcepub fn additional_metrics_to_retain(self, input: impl Into<String>) -> Self
👎Deprecated: Use additionalMetricsToRetainV2.
pub fn additional_metrics_to_retain(self, input: impl Into<String>) -> Self
Appends an item to additional_metrics_to_retain
.
To override the contents of this collection use set_additional_metrics_to_retain
.
Please use CreateSecurityProfileRequest$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 set_additional_metrics_to_retain(self, input: Option<Vec<String>>) -> Self
👎Deprecated: Use additionalMetricsToRetainV2.
pub fn set_additional_metrics_to_retain(self, input: Option<Vec<String>>) -> Self
Please use CreateSecurityProfileRequest$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, input: MetricToRetain) -> Self
pub fn additional_metrics_to_retain_v2(self, input: MetricToRetain) -> Self
Appends an item to additional_metrics_to_retain_v2
.
To override the contents of this collection use set_additional_metrics_to_retain_v2
.
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 set_additional_metrics_to_retain_v2(
self,
input: Option<Vec<MetricToRetain>>
) -> Self
pub fn set_additional_metrics_to_retain_v2(
self,
input: Option<Vec<MetricToRetain>>
) -> Self
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.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Metadata that can be used to manage the security profile.
Metadata that can be used to manage the security profile.
sourcepub fn build(self) -> Result<CreateSecurityProfileInput, BuildError>
pub fn build(self) -> Result<CreateSecurityProfileInput, BuildError>
Consumes the builder and constructs a CreateSecurityProfileInput
.