Alexa For Business

2018/03/29 - Alexa For Business - 12 new api methods

Changes  Adds operations for creating and managing address books of phone contacts for use in A4B managed shared devices.

GetContact (new) Link ¶

Gets the contact details by the contact ARN.

See also: AWS API Documentation

Request Syntax

client.get_contact(
    ContactArn='string'
)
type ContactArn

string

param ContactArn

[REQUIRED]

The ARN of the contact for which to request details.

rtype

dict

returns

Response Syntax

{
    'Contact': {
        'ContactArn': 'string',
        'DisplayName': 'string',
        'FirstName': 'string',
        'LastName': 'string',
        'PhoneNumber': 'string'
    }
}

Response Structure

  • (dict) --

    • Contact (dict) --

      The details of the requested contact.

      • ContactArn (string) --

        The ARN of the contact.

      • DisplayName (string) --

        The name of the contact to display on the AWS management console.

      • FirstName (string) --

        The first name of the contact that is used to call the contact on the device.

      • LastName (string) --

        The last name of the contact that is used to call the contact on the device.

      • PhoneNumber (string) --

        The phone number of the contact.

UpdateAddressBook (new) Link ¶

Updates address book details by the address book ARN.

See also: AWS API Documentation

Request Syntax

client.update_address_book(
    AddressBookArn='string',
    Name='string',
    Description='string'
)
type AddressBookArn

string

param AddressBookArn

[REQUIRED]

The ARN of the room to update.

type Name

string

param Name

The updated name of the room.

type Description

string

param Description

The updated description of the room.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

SearchContacts (new) Link ¶

Searches contacts and lists the ones that meet a set of filter and sort criteria.

See also: AWS API Documentation

Request Syntax

client.search_contacts(
    Filters=[
        {
            'Key': 'string',
            'Values': [
                'string',
            ]
        },
    ],
    SortCriteria=[
        {
            'Key': 'string',
            'Value': 'ASC'|'DESC'
        },
    ],
    NextToken='string',
    MaxResults=123
)
type Filters

list

param Filters

The filters to use to list a specified set of address books. The supported filter keys are DisplayName, FirstName, LastName, and AddressBookArns.

  • (dict) --

    A filter name and value pair that is used to return a more specific list of results. Filters can be used to match a set of resources by various criteria.

    • Key (string) -- [REQUIRED]

      The key of a filter.

    • Values (list) -- [REQUIRED]

      The values of a filter.

      • (string) --

type SortCriteria

list

param SortCriteria

The sort order to use in listing the specified set of contacts. The supported sort keys are DisplayName, FirstName, and LastName.

  • (dict) --

    An object representing a sort criteria.

    • Key (string) -- [REQUIRED]

      The sort key of a sort object.

    • Value (string) -- [REQUIRED]

      The sort value of a sort object.

type NextToken

string

param NextToken

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response only includes results beyond the token, up to the value specified by MaxResults.

type MaxResults

integer

param MaxResults

The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

rtype

dict

returns

Response Syntax

{
    'Contacts': [
        {
            'ContactArn': 'string',
            'DisplayName': 'string',
            'FirstName': 'string',
            'LastName': 'string',
            'PhoneNumber': 'string'
        },
    ],
    'NextToken': 'string',
    'TotalCount': 123
}

Response Structure

  • (dict) --

    • Contacts (list) --

      The contacts that meet the specified set of filter criteria, in sort order.

      • (dict) --

        Information related to a contact.

        • ContactArn (string) --

          The ARN of the contact.

        • DisplayName (string) --

          The name of the contact to display on the AWS management console.

        • FirstName (string) --

          The first name of the contact that is used to call the contact on the device.

        • LastName (string) --

          The last name of the contact that is used to call the contact on the device.

        • PhoneNumber (string) --

          The phone number of the contact.

    • NextToken (string) --

      The token returned to indicate that there is more data available.

    • TotalCount (integer) --

      The total number of contacts returned.

CreateContact (new) Link ¶

Creates a contact with the specified details.

See also: AWS API Documentation

Request Syntax

client.create_contact(
    DisplayName='string',
    FirstName='string',
    LastName='string',
    PhoneNumber='string',
    ClientRequestToken='string'
)
type DisplayName

string

param DisplayName

The name of the contact to display on the AWS management console.

type FirstName

string

param FirstName

[REQUIRED]

The first name of the contact that is used to call the contact on the device.

type LastName

string

param LastName

The last name of the contact that is used to call the contact on the device.

type PhoneNumber

string

param PhoneNumber

[REQUIRED]

The phone number of the contact in E164 format.

type ClientRequestToken

string

param ClientRequestToken

A unique, user-specified identifier for this request that ensures idempotency.

This field is autopopulated if not provided.

rtype

dict

returns

Response Syntax

{
    'ContactArn': 'string'
}

Response Structure

  • (dict) --

    • ContactArn (string) --

      The ARN of the newly created address book.

GetAddressBook (new) Link ¶

Gets address the book details by the address book ARN.

See also: AWS API Documentation

Request Syntax

client.get_address_book(
    AddressBookArn='string'
)
type AddressBookArn

string

param AddressBookArn

[REQUIRED]

The ARN of the address book for which to request details.

rtype

dict

returns

Response Syntax

{
    'AddressBook': {
        'AddressBookArn': 'string',
        'Name': 'string',
        'Description': 'string'
    }
}

Response Structure

  • (dict) --

    • AddressBook (dict) --

      The details of the requested address book.

      • AddressBookArn (string) --

        The ARN of the address book.

      • Name (string) --

        The name of the address book.

      • Description (string) --

        The description of the address book.

AssociateContactWithAddressBook (new) Link ¶

Associates a contact to a given address book.

See also: AWS API Documentation

Request Syntax

client.associate_contact_with_address_book(
    ContactArn='string',
    AddressBookArn='string'
)
type ContactArn

string

param ContactArn

[REQUIRED]

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

type AddressBookArn

string

param AddressBookArn

[REQUIRED]

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

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

CreateAddressBook (new) Link ¶

Creates an address book with the specified details.

See also: AWS API Documentation

Request Syntax

client.create_address_book(
    Name='string',
    Description='string',
    ClientRequestToken='string'
)
type Name

string

param Name

[REQUIRED]

The name of the address book.

type Description

string

param Description

The description of the address book.

type ClientRequestToken

string

param ClientRequestToken

A unique, user-specified identifier for the request that ensures idempotency.

This field is autopopulated if not provided.

rtype

dict

returns

Response Syntax

{
    'AddressBookArn': 'string'
}

Response Structure

  • (dict) --

    • AddressBookArn (string) --

      The ARN of the newly created address book.

SearchAddressBooks (new) Link ¶

Searches address books and lists the ones that meet a set of filter and sort criteria.

See also: AWS API Documentation

Request Syntax

client.search_address_books(
    Filters=[
        {
            'Key': 'string',
            'Values': [
                'string',
            ]
        },
    ],
    SortCriteria=[
        {
            'Key': 'string',
            'Value': 'ASC'|'DESC'
        },
    ],
    NextToken='string',
    MaxResults=123
)
type Filters

list

param Filters

The filters to use to list a specified set of address books. The supported filter key is AddressBookName.

  • (dict) --

    A filter name and value pair that is used to return a more specific list of results. Filters can be used to match a set of resources by various criteria.

    • Key (string) -- [REQUIRED]

      The key of a filter.

    • Values (list) -- [REQUIRED]

      The values of a filter.

      • (string) --

type SortCriteria

list

param SortCriteria

The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.

  • (dict) --

    An object representing a sort criteria.

    • Key (string) -- [REQUIRED]

      The sort key of a sort object.

    • Value (string) -- [REQUIRED]

      The sort value of a sort object.

type NextToken

string

param NextToken

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response only includes results beyond the token, up to the value specified by MaxResults.

type MaxResults

integer

param MaxResults

The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

rtype

dict

returns

Response Syntax

{
    'AddressBooks': [
        {
            'AddressBookArn': 'string',
            'Name': 'string',
            'Description': 'string'
        },
    ],
    'NextToken': 'string',
    'TotalCount': 123
}

Response Structure

  • (dict) --

    • AddressBooks (list) --

      The address books that meet the specified set of filter criteria, in sort order.

      • (dict) --

        Information related to an address book.

        • AddressBookArn (string) --

          The ARN of the address book.

        • Name (string) --

          The name of the address book.

        • Description (string) --

          The description of the address book.

    • NextToken (string) --

      The token returned to indicate that there is more data available.

    • TotalCount (integer) --

      The total number of address books returned.

DeleteAddressBook (new) Link ¶

Deletes an address book by the address book ARN.

See also: AWS API Documentation

Request Syntax

client.delete_address_book(
    AddressBookArn='string'
)
type AddressBookArn

string

param AddressBookArn

[REQUIRED]

The ARN of the address book to delete.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

DisassociateContactFromAddressBook (new) Link ¶

Disassociates a contact from a given address book.

See also: AWS API Documentation

Request Syntax

client.disassociate_contact_from_address_book(
    ContactArn='string',
    AddressBookArn='string'
)
type ContactArn

string

param ContactArn

[REQUIRED]

The ARN of the contact to disassociate from an address book.

type AddressBookArn

string

param AddressBookArn

[REQUIRED]

The ARN of the address from which to disassociate the contact.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

DeleteContact (new) Link ¶

Deletes a contact by the contact ARN.

See also: AWS API Documentation

Request Syntax

client.delete_contact(
    ContactArn='string'
)
type ContactArn

string

param ContactArn

[REQUIRED]

The ARN of the contact to delete.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

UpdateContact (new) Link ¶

Updates the contact details by the contact ARN.

See also: AWS API Documentation

Request Syntax

client.update_contact(
    ContactArn='string',
    DisplayName='string',
    FirstName='string',
    LastName='string',
    PhoneNumber='string'
)
type ContactArn

string

param ContactArn

[REQUIRED]

The ARN of the contact to update.

type DisplayName

string

param DisplayName

The updated display name of the contact.

type FirstName

string

param FirstName

The updated first name of the contact.

type LastName

string

param LastName

The updated last name of the contact.

type PhoneNumber

string

param PhoneNumber

The updated phone number of the contact.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --