You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AlexaForBusiness::Types::UpdateContactRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateContactRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  contact_arn: "Arn", # required
  display_name: "ContactName",
  first_name: "ContactName",
  last_name: "ContactName",
  phone_number: "RawPhoneNumber",
  phone_numbers: [
    {
      number: "RawPhoneNumber", # required
      type: "MOBILE", # required, accepts MOBILE, WORK, HOME
    },
  ],
  sip_addresses: [
    {
      uri: "SipUri", # required
      type: "WORK", # required, accepts WORK
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#contact_arnString

The ARN of the contact to update.

Returns:

  • (String)

    The ARN of the contact to update.

#display_nameString

The updated display name of the contact.

Returns:

  • (String)

    The updated display name of the contact.

#first_nameString

The updated first name of the contact.

Returns:

  • (String)

    The updated first name of the contact.

#last_nameString

The updated last name of the contact.

Returns:

  • (String)

    The updated last name of the contact.

#phone_numberString

The updated phone number of the contact. The phone number type defaults to WORK. You can either specify PhoneNumber or PhoneNumbers. We recommend that you use PhoneNumbers, which lets you specify the phone number type and multiple numbers.

Returns:

  • (String)

    The updated phone number of the contact.

#phone_numbersArray<Types::PhoneNumber>

The list of phone numbers for the contact.

Returns:

#sip_addressesArray<Types::SipAddress>

The list of SIP addresses for the contact.

Returns: