[][src]Struct rusoto_iot::CreateSecurityProfileRequest

pub struct CreateSecurityProfileRequest {
    pub alert_targets: Option<HashMap<String, AlertTarget>>,
    pub behaviors: Vec<Behavior>,
    pub security_profile_description: Option<String>,
    pub security_profile_name: String,
}

Fields

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.

Specifies the behaviors that, when violated by a device (thing), cause an alert.

A description of the security profile.

The name you are giving to the security profile.

Trait Implementations

impl PartialEq<CreateSecurityProfileRequest> for CreateSecurityProfileRequest
[src]

impl Default for CreateSecurityProfileRequest
[src]

impl Clone for CreateSecurityProfileRequest
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateSecurityProfileRequest
[src]

impl Serialize for CreateSecurityProfileRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T