Class: Aws::AlexaForBusiness::Types::AssociateContactWithAddressBookRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::AssociateContactWithAddressBookRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/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
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address_book_arn ⇒ String
The ARN of the address book with which to associate the contact.
-
#contact_arn ⇒ String
The ARN of the contact to associate with an address book.
Instance Attribute Details
#address_book_arn ⇒ String
The ARN of the address book with which to associate the contact.
115 116 117 118 119 120 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 115 class AssociateContactWithAddressBookRequest < Struct.new( :contact_arn, :address_book_arn) SENSITIVE = [] include Aws::Structure end |
#contact_arn ⇒ String
The ARN of the contact to associate with an address book.
115 116 117 118 119 120 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 115 class AssociateContactWithAddressBookRequest < Struct.new( :contact_arn, :address_book_arn) SENSITIVE = [] include Aws::Structure end |