Struct rusoto_sns::CheckIfPhoneNumberIsOptedOutResponse [] [src]

pub struct CheckIfPhoneNumberIsOptedOutResponse {
    pub is_opted_out: Option<bool>,
}

The response from the CheckIfPhoneNumberIsOptedOut action.

Fields

Indicates whether the phone number is opted out:

  • true – The phone number is opted out, meaning you cannot publish SMS messages to it.

  • false – The phone number is opted in, meaning you can publish SMS messages to it.

Trait Implementations

impl Default for CheckIfPhoneNumberIsOptedOutResponse
[src]

[src]

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

impl Debug for CheckIfPhoneNumberIsOptedOutResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CheckIfPhoneNumberIsOptedOutResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations