[][src]Struct rusoto_iot::CreateMitigationActionRequest

pub struct CreateMitigationActionRequest {
    pub action_name: String,
    pub action_params: MitigationActionParams,
    pub role_arn: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

action_name: String

A friendly name for the action. Choose a friendly name that accurately describes the action (for example, EnableLoggingAction).

action_params: MitigationActionParams

Defines the type of action and the parameters for that action.

role_arn: String

The ARN of the IAM role that is used to apply the mitigation action.

tags: Option<Vec<Tag>>

Metadata that can be used to manage the mitigation action.

Trait Implementations

impl Clone for CreateMitigationActionRequest[src]

impl Default for CreateMitigationActionRequest[src]

impl PartialEq<CreateMitigationActionRequest> for CreateMitigationActionRequest[src]

impl Debug for CreateMitigationActionRequest[src]

impl StructuralPartialEq for CreateMitigationActionRequest[src]

impl Serialize for CreateMitigationActionRequest[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self