Struct rusoto_budgets::UpdateSubscriberRequest[][src]

pub struct UpdateSubscriberRequest {
    pub account_id: String,
    pub budget_name: String,
    pub new_subscriber: Subscriber,
    pub notification: Notification,
    pub old_subscriber: Subscriber,
}

Request of UpdateSubscriber

Fields

The accountId that is associated with the budget whose subscriber you want to update.

The name of the budget whose subscriber you want to update.

The updated subscriber associated with a budget notification.

The notification whose subscriber you want to update.

The previous subscriber associated with a budget notification.

Trait Implementations

impl Default for UpdateSubscriberRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateSubscriberRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateSubscriberRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateSubscriberRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations