[][src]Struct rusoto_budgets::Action

pub struct Action {
    pub action_id: String,
    pub action_threshold: ActionThreshold,
    pub action_type: String,
    pub approval_model: String,
    pub budget_name: String,
    pub definition: Definition,
    pub execution_role_arn: String,
    pub notification_type: String,
    pub status: String,
    pub subscribers: Vec<Subscriber>,
}

A budget action resource.

Fields

action_id: String

A system-generated universally unique identifier (UUID) for the action.

action_threshold: ActionThreshold

The trigger threshold of the action.

action_type: String

The type of action. This defines the type of tasks that can be carried out by this action. This field also determines the format for definition.

approval_model: String

This specifies if the action needs manual or automatic approval.

budget_name: Stringdefinition: Definition

Where you specify all of the type-specific parameters.

execution_role_arn: String

The role passed for action execution and reversion. Roles and actions must be in the same account.

notification_type: Stringstatus: String

The status of action.

subscribers: Vec<Subscriber>

Trait Implementations

impl Clone for Action[src]

impl Debug for Action[src]

impl Default for Action[src]

impl<'de> Deserialize<'de> for Action[src]

impl PartialEq<Action> for Action[src]

impl StructuralPartialEq for Action[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.