Class: Aws::AlexaForBusiness::Types::AssociateContactWithAddressBookRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-alexaforbusiness/types.rb

Overview

Note:

When making an API call, you may pass AssociateContactWithAddressBookRequest data as a hash:

{
  contact_arn: "Arn", # required
  address_book_arn: "Arn", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#address_book_arnString

The ARN of the address book with which to associate the contact.

Returns:

  • (String)


97
98
99
100
101
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 97

class AssociateContactWithAddressBookRequest < Struct.new(
  :contact_arn,
  :address_book_arn)
  include Aws::Structure
end

#contact_arnString

The ARN of the contact to associate with an address book.

Returns:

  • (String)


97
98
99
100
101
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 97

class AssociateContactWithAddressBookRequest < Struct.new(
  :contact_arn,
  :address_book_arn)
  include Aws::Structure
end