Struct rusoto_budgets::DeleteSubscriberRequest[][src]

pub struct DeleteSubscriberRequest {
    pub account_id: String,
    pub budget_name: String,
    pub notification: Notification,
    pub subscriber: Subscriber,
}

Request of DeleteSubscriber

Fields

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

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

The notification whose subscriber you want to delete.

The subscriber that you want to delete.

Trait Implementations

impl Default for DeleteSubscriberRequest
[src]

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

impl Debug for DeleteSubscriberRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteSubscriberRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteSubscriberRequest
[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