Struct rusoto_alexaforbusiness::UpdateContactRequest[][src]

pub struct UpdateContactRequest {
    pub contact_arn: String,
    pub display_name: Option<String>,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub phone_number: Option<String>,
}

Fields

The ARN of the contact to update.

The updated display name of the contact.

The updated first name of the contact.

The updated last name of the contact.

The updated phone number of the contact.

Trait Implementations

impl Default for UpdateContactRequest
[src]

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

impl Debug for UpdateContactRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateContactRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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