Table of Contents
A low-level client representing Amazon Chime:
import boto3
client = boto3.client('chime')
These are the available methods:
Associates a phone number with the specified Amazon Chime user.
See also: AWS API Documentation
Request Syntax
response = client.associate_phone_number_with_user(
AccountId='string',
UserId='string',
E164PhoneNumber='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
[REQUIRED]
The phone number, in E.164 format.
dict
Response Syntax
{}
Response Structure
Exceptions
Associates phone numbers with the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.associate_phone_numbers_with_voice_connector(
VoiceConnectorId='string',
E164PhoneNumbers=[
'string',
],
ForceAssociate=True|False
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
List of phone numbers, in E.164 format.
dict
Response Syntax
{
'PhoneNumberErrors': [
{
'PhoneNumberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
PhoneNumberErrors (list) --
If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
(dict) --
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
PhoneNumberId (string) --
The phone number ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Associates phone numbers with the specified Amazon Chime Voice Connector group.
See also: AWS API Documentation
Request Syntax
response = client.associate_phone_numbers_with_voice_connector_group(
VoiceConnectorGroupId='string',
E164PhoneNumbers=[
'string',
],
ForceAssociate=True|False
)
[REQUIRED]
The Amazon Chime Voice Connector group ID.
List of phone numbers, in E.164 format.
dict
Response Syntax
{
'PhoneNumberErrors': [
{
'PhoneNumberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
PhoneNumberErrors (list) --
If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
(dict) --
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
PhoneNumberId (string) --
The phone number ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Associates the specified sign-in delegate groups with the specified Amazon Chime account.
See also: AWS API Documentation
Request Syntax
response = client.associate_signin_delegate_groups_with_account(
AccountId='string',
SigninDelegateGroups=[
{
'GroupName': 'string'
},
]
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The sign-in delegate groups.
An Active Directory (AD) group whose members are granted permission to act as delegates.
The group name.
dict
Response Syntax
{}
Response Structure
Exceptions
Creates up to 100 new attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.batch_create_attendee(
MeetingId='string',
Attendees=[
{
'ExternalUserId': 'string',
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
},
]
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The request containing the attendees to create.
The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action.
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
The tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
dict
Response Syntax
{
'Attendees': [
{
'ExternalUserId': 'string',
'AttendeeId': 'string',
'JoinToken': 'string'
},
],
'Errors': [
{
'ExternalUserId': 'string',
'ErrorCode': 'string',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
Attendees (list) --
The attendee information, including attendees IDs and join tokens.
(dict) --
An Amazon Chime SDK meeting attendee. Includes a unique AttendeeId and JoinToken . The JoinToken allows a client to authenticate and join as the specified attendee. The JoinToken expires when the meeting ends or when DeleteAttendee is called. After that, the attendee is unable to join the meeting.
We recommend securely transferring each JoinToken from your server application to the client so that no other client has access to the token except for the one authorized to represent the attendee.
ExternalUserId (string) --
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
AttendeeId (string) --
The Amazon Chime SDK attendee ID.
JoinToken (string) --
The join token used by the Amazon Chime SDK attendee.
Errors (list) --
If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.
(dict) --
The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages.
ExternalUserId (string) --
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Adds up to 50 members to a chat room in an Amazon Chime Enterprise account. Members can be either users or bots. The member role designates whether the member is a chat room administrator or a general chat room member.
See also: AWS API Documentation
Request Syntax
response = client.batch_create_room_membership(
AccountId='string',
RoomId='string',
MembershipItemList=[
{
'MemberId': 'string',
'Role': 'Administrator'|'Member'
},
]
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
[REQUIRED]
The list of membership items.
Membership details, such as member ID and member role.
The member ID.
The member role.
dict
Response Syntax
{
'Errors': [
{
'MemberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
Errors (list) --
If the action fails for one or more of the member IDs in the request, a list of the member IDs is returned, along with error codes and error messages.
(dict) --
The list of errors returned when a member action results in an error.
MemberId (string) --
The member ID.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Moves phone numbers into the Deletion queue . Phone numbers must be disassociated from any users or Amazon Chime Voice Connectors before they can be deleted.
Phone numbers remain in the Deletion queue for 7 days before they are deleted permanently.
See also: AWS API Documentation
Request Syntax
response = client.batch_delete_phone_number(
PhoneNumberIds=[
'string',
]
)
[REQUIRED]
List of phone number IDs.
{
'PhoneNumberErrors': [
{
'PhoneNumberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
The phone number ID for which the action failed.
The error code.
The error message.
Exceptions
Suspends up to 50 users from a Team or EnterpriseLWA Amazon Chime account. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
Users suspended from a Team account are disassociated from the account, but they can continue to use Amazon Chime as free users. To remove the suspension from suspended Team account users, invite them to the Team account again. You can use the InviteUsers action to do so.
Users suspended from an EnterpriseLWA account are immediately signed out of Amazon Chime and can no longer sign in. To remove the suspension from suspended EnterpriseLWA account users, use the BatchUnsuspendUser action.
To sign out users without suspending them, use the LogoutUser action.
See also: AWS API Documentation
Request Syntax
response = client.batch_suspend_user(
AccountId='string',
UserIdList=[
'string',
]
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The request containing the user IDs to suspend.
dict
Response Syntax
{
'UserErrors': [
{
'UserId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
UserErrors (list) --
If the BatchSuspendUser action fails for one or more of the user IDs in the request, a list of the user IDs is returned, along with error codes and error messages.
(dict) --
The list of errors returned when errors are encountered during the BatchSuspendUser , BatchUnsuspendUser , or BatchUpdateUser actions. This includes user IDs, error codes, and error messages.
UserId (string) --
The user ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Removes the suspension from up to 50 previously suspended users for the specified Amazon Chime EnterpriseLWA account. Only users on EnterpriseLWA accounts can be unsuspended using this action. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
Previously suspended users who are unsuspended using this action are returned to Registered status. Users who are not previously suspended are ignored.
See also: AWS API Documentation
Request Syntax
response = client.batch_unsuspend_user(
AccountId='string',
UserIdList=[
'string',
]
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The request containing the user IDs to unsuspend.
dict
Response Syntax
{
'UserErrors': [
{
'UserId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
UserErrors (list) --
If the BatchUnsuspendUser action fails for one or more of the user IDs in the request, a list of the user IDs is returned, along with error codes and error messages.
(dict) --
The list of errors returned when errors are encountered during the BatchSuspendUser , BatchUnsuspendUser , or BatchUpdateUser actions. This includes user IDs, error codes, and error messages.
UserId (string) --
The user ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Updates phone number product types or calling names. You can update one attribute at a time for each UpdatePhoneNumberRequestItem . For example, you can update either the product type or the calling name.
For product types, choose from Amazon Chime Business Calling and Amazon Chime Voice Connector. For toll-free numbers, you must use the Amazon Chime Voice Connector product type.
Updates to outbound calling names can take up to 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.
See also: AWS API Documentation
Request Syntax
response = client.batch_update_phone_number(
UpdatePhoneNumberRequestItems=[
{
'PhoneNumberId': 'string',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'CallingName': 'string'
},
]
)
[REQUIRED]
The request containing the phone number IDs and product types or calling names to update.
The phone number ID, product type, or calling name fields to update, used with the BatchUpdatePhoneNumber and UpdatePhoneNumber actions.
The phone number ID to update.
The product type to update.
The outbound calling name to update.
{
'PhoneNumberErrors': [
{
'PhoneNumberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
The phone number ID for which the action failed.
The error code.
The error message.
Exceptions
Updates user details within the UpdateUserRequestItem object for up to 20 users for the specified Amazon Chime account. Currently, only LicenseType updates are supported for this action.
See also: AWS API Documentation
Request Syntax
response = client.batch_update_user(
AccountId='string',
UpdateUserRequestItems=[
{
'UserId': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
}
},
]
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The request containing the user IDs and details to update.
The user ID and user fields to update, used with the BatchUpdateUser action.
The user ID.
The user license type.
The user type.
The Alexa for Business metadata.
Starts or stops Alexa for Business.
The ARN of the room resource.
dict
Response Syntax
{
'UserErrors': [
{
'UserId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
UserErrors (list) --
If the BatchUpdateUser action fails for one or more of the user IDs in the request, a list of the user IDs is returned, along with error codes and error messages.
(dict) --
The list of errors returned when errors are encountered during the BatchSuspendUser , BatchUnsuspendUser , or BatchUpdateUser actions. This includes user IDs, error codes, and error messages.
UserId (string) --
The user ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Check if an operation can be paginated.
Creates an Amazon Chime account under the administrator's AWS account. Only Team account types are currently supported for this action. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
See also: AWS API Documentation
Request Syntax
response = client.create_account(
Name='string'
)
[REQUIRED]
The name of the Amazon Chime account.
{
'Account': {
'AwsAccountId': 'string',
'AccountId': 'string',
'Name': 'string',
'AccountType': 'Team'|'EnterpriseDirectory'|'EnterpriseLWA'|'EnterpriseOIDC',
'CreatedTimestamp': datetime(2015, 1, 1),
'DefaultLicense': 'Basic'|'Plus'|'Pro'|'ProTrial',
'SupportedLicenses': [
'Basic'|'Plus'|'Pro'|'ProTrial',
],
'SigninDelegateGroups': [
{
'GroupName': 'string'
},
]
}
}
Response Structure
The Amazon Chime account details.
The AWS account ID.
The Amazon Chime account ID.
The Amazon Chime account name.
The Amazon Chime account type. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
The Amazon Chime account creation timestamp, in ISO 8601 format.
The default license for the Amazon Chime account.
Supported licenses for the Amazon Chime account.
The sign-in delegate groups associated with the account.
An Active Directory (AD) group whose members are granted permission to act as delegates.
The group name.
Exceptions
Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.create_attendee(
MeetingId='string',
ExternalUserId='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
The tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
dict
Response Syntax
{
'Attendee': {
'ExternalUserId': 'string',
'AttendeeId': 'string',
'JoinToken': 'string'
}
}
Response Structure
(dict) --
Attendee (dict) --
The attendee information, including attendee ID and join token.
ExternalUserId (string) --
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
AttendeeId (string) --
The Amazon Chime SDK attendee ID.
JoinToken (string) --
The join token used by the Amazon Chime SDK attendee.
Exceptions
Creates a bot for an Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.create_bot(
AccountId='string',
DisplayName='string',
Domain='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot display name.
dict
Response Syntax
{
'Bot': {
'BotId': 'string',
'UserId': 'string',
'DisplayName': 'string',
'BotType': 'ChatBot',
'Disabled': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'BotEmail': 'string',
'SecurityToken': 'string'
}
}
Response Structure
(dict) --
Bot (dict) --
The bot details.
BotId (string) --
The bot ID.
UserId (string) --
The unique ID for the bot user.
DisplayName (string) --
The bot display name.
BotType (string) --
The bot type.
Disabled (boolean) --
When true, the bot is stopped from running in your account.
CreatedTimestamp (datetime) --
The bot creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated bot timestamp, in ISO 8601 format.
BotEmail (string) --
The bot email address.
SecurityToken (string) --
The security token used to authenticate Amazon Chime with the outgoing event endpoint.
Exceptions
Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.create_meeting(
ClientRequestToken='string',
ExternalMeetingId='string',
MeetingHostId='string',
MediaRegion='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
],
NotificationsConfiguration={
'SnsTopicArn': 'string',
'SqsQueueArn': 'string'
}
)
[REQUIRED]
The unique identifier for the client request. Use a different token for different meetings.
This field is autopopulated if not provided.
The tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
The configuration for resource targets to receive notifications when meeting and attendee events occur.
The SNS topic ARN.
The SQS queue ARN.
dict
Response Syntax
{
'Meeting': {
'MeetingId': 'string',
'ExternalMeetingId': 'string',
'MediaPlacement': {
'AudioHostUrl': 'string',
'AudioFallbackUrl': 'string',
'ScreenDataUrl': 'string',
'ScreenSharingUrl': 'string',
'ScreenViewingUrl': 'string',
'SignalingUrl': 'string',
'TurnControlUrl': 'string'
},
'MediaRegion': 'string'
}
}
Response Structure
(dict) --
Meeting (dict) --
The meeting information, including the meeting ID and MediaPlacement .
MeetingId (string) --
The Amazon Chime SDK meeting ID.
ExternalMeetingId (string) --
The external meeting ID.
MediaPlacement (dict) --
The media placement for the meeting.
AudioHostUrl (string) --
The audio host URL.
AudioFallbackUrl (string) --
The audio fallback URL.
ScreenDataUrl (string) --
The screen data URL.
ScreenSharingUrl (string) --
The screen sharing URL.
ScreenViewingUrl (string) --
The screen viewing URL.
SignalingUrl (string) --
The signaling URL.
TurnControlUrl (string) --
The turn control URL.
MediaRegion (string) --
The Region in which to create the meeting. Available values: ap-northeast-1 , ap-southeast-1 , ap-southeast-2 , ca-central-1 , eu-central-1 , eu-north-1 , eu-west-1 , eu-west-2 , eu-west-3 , sa-east-1 , us-east-1 , us-east-2 , us-west-1 , us-west-2 .
Exceptions
Creates an order for phone numbers to be provisioned. Choose from Amazon Chime Business Calling and Amazon Chime Voice Connector product types. For toll-free numbers, you must use the Amazon Chime Voice Connector product type.
See also: AWS API Documentation
Request Syntax
response = client.create_phone_number_order(
ProductType='BusinessCalling'|'VoiceConnector',
E164PhoneNumbers=[
'string',
]
)
[REQUIRED]
The phone number product type.
[REQUIRED]
List of phone numbers, in E.164 format.
dict
Response Syntax
{
'PhoneNumberOrder': {
'PhoneNumberOrderId': 'string',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'Processing'|'Successful'|'Failed'|'Partial',
'OrderedPhoneNumbers': [
{
'E164PhoneNumber': 'string',
'Status': 'Processing'|'Acquired'|'Failed'
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
PhoneNumberOrder (dict) --
The phone number order details.
PhoneNumberOrderId (string) --
The phone number order ID.
ProductType (string) --
The phone number order product type.
Status (string) --
The status of the phone number order.
OrderedPhoneNumbers (list) --
The ordered phone number details, such as the phone number in E.164 format and the phone number status.
(dict) --
A phone number for which an order has been placed.
E164PhoneNumber (string) --
The phone number, in E.164 format.
Status (string) --
The phone number status.
CreatedTimestamp (datetime) --
The phone number order creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated phone number order timestamp, in ISO 8601 format.
Exceptions
Creates a proxy session on the specified Amazon Chime Voice Connector for the specified participant phone numbers.
See also: AWS API Documentation
Request Syntax
response = client.create_proxy_session(
VoiceConnectorId='string',
ParticipantPhoneNumbers=[
'string',
],
Name='string',
ExpiryMinutes=123,
Capabilities=[
'Voice'|'SMS',
],
NumberSelectionBehavior='PreferSticky'|'AvoidSticky',
GeoMatchLevel='Country'|'AreaCode',
GeoMatchParams={
'Country': 'string',
'AreaCode': 'string'
}
)
[REQUIRED]
The Amazon Chime voice connector ID.
[REQUIRED]
The participant phone numbers.
[REQUIRED]
The proxy session capabilities.
The country and area code for the proxy phone number.
The country.
The area code.
dict
Response Syntax
{
'ProxySession': {
'VoiceConnectorId': 'string',
'ProxySessionId': 'string',
'Name': 'string',
'Status': 'Open'|'InProgress'|'Closed',
'ExpiryMinutes': 123,
'Capabilities': [
'Voice'|'SMS',
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'EndedTimestamp': datetime(2015, 1, 1),
'Participants': [
{
'PhoneNumber': 'string',
'ProxyPhoneNumber': 'string'
},
],
'NumberSelectionBehavior': 'PreferSticky'|'AvoidSticky',
'GeoMatchLevel': 'Country'|'AreaCode',
'GeoMatchParams': {
'Country': 'string',
'AreaCode': 'string'
}
}
}
Response Structure
(dict) --
ProxySession (dict) --
The proxy session details.
VoiceConnectorId (string) --
The Amazon Chime voice connector ID.
ProxySessionId (string) --
The proxy session ID.
Name (string) --
The name of the proxy session.
Status (string) --
The status of the proxy session.
ExpiryMinutes (integer) --
The number of minutes allowed for the proxy session.
Capabilities (list) --
The proxy session capabilities.
CreatedTimestamp (datetime) --
The created timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated timestamp, in ISO 8601 format.
EndedTimestamp (datetime) --
The ended timestamp, in ISO 8601 format.
Participants (list) --
The proxy session participants.
(dict) --
The phone number and proxy phone number for a participant in an Amazon Chime Voice Connector proxy session.
PhoneNumber (string) --
The participant's phone number.
ProxyPhoneNumber (string) --
The participant's proxy phone number.
NumberSelectionBehavior (string) --
The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
GeoMatchLevel (string) --
The preference for matching the country or area code of the proxy phone number with that of the first participant.
GeoMatchParams (dict) --
The country and area code for the proxy phone number.
Country (string) --
The country.
AreaCode (string) --
The area code.
Exceptions
Creates a chat room for the specified Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.create_room(
AccountId='string',
Name='string',
ClientRequestToken='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room name.
The idempotency token for the request.
This field is autopopulated if not provided.
dict
Response Syntax
{
'Room': {
'RoomId': 'string',
'Name': 'string',
'AccountId': 'string',
'CreatedBy': 'string',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
Room (dict) --
The room details.
RoomId (string) --
The room ID.
Name (string) --
The room name.
AccountId (string) --
The Amazon Chime account ID.
CreatedBy (string) --
The identifier of the room creator.
CreatedTimestamp (datetime) --
The room creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The room update timestamp, in ISO 8601 format.
Exceptions
Adds a member to a chat room in an Amazon Chime Enterprise account. A member can be either a user or a bot. The member role designates whether the member is a chat room administrator or a general chat room member.
See also: AWS API Documentation
Request Syntax
response = client.create_room_membership(
AccountId='string',
RoomId='string',
MemberId='string',
Role='Administrator'|'Member'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
[REQUIRED]
The Amazon Chime member ID (user ID or bot ID).
dict
Response Syntax
{
'RoomMembership': {
'RoomId': 'string',
'Member': {
'MemberId': 'string',
'MemberType': 'User'|'Bot'|'Webhook',
'Email': 'string',
'FullName': 'string',
'AccountId': 'string'
},
'Role': 'Administrator'|'Member',
'InvitedBy': 'string',
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
RoomMembership (dict) --
The room membership details.
RoomId (string) --
The room ID.
Member (dict) --
The member details, such as email address, name, member ID, and member type.
MemberId (string) --
The member ID (user ID or bot ID).
MemberType (string) --
The member type.
Email (string) --
The member email address.
FullName (string) --
The member name.
AccountId (string) --
The Amazon Chime account ID.
Role (string) --
The membership role.
InvitedBy (string) --
The identifier of the user that invited the room member.
UpdatedTimestamp (datetime) --
The room membership update timestamp, in ISO 8601 format.
Exceptions
Creates a user under the specified Amazon Chime account.
See also: AWS API Documentation
Request Syntax
response = client.create_user(
AccountId='string',
Username='string',
Email='string',
UserType='PrivateUser'|'SharedDevice'
)
[REQUIRED]
The Amazon Chime account ID.
dict
Response Syntax
{
'User': {
'UserId': 'string',
'AccountId': 'string',
'PrimaryEmail': 'string',
'PrimaryProvisionedNumber': 'string',
'DisplayName': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'UserRegistrationStatus': 'Unregistered'|'Registered'|'Suspended',
'UserInvitationStatus': 'Pending'|'Accepted'|'Failed',
'RegisteredOn': datetime(2015, 1, 1),
'InvitedOn': datetime(2015, 1, 1),
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
},
'PersonalPIN': 'string'
}
}
Response Structure
(dict) --
User (dict) --
The user on the Amazon Chime account.
UserId (string) --
The user ID.
AccountId (string) --
The Amazon Chime account ID.
PrimaryEmail (string) --
The primary email address of the user.
PrimaryProvisionedNumber (string) --
The primary phone number associated with the user.
DisplayName (string) --
The display name of the user.
LicenseType (string) --
The license type for the user.
UserType (string) --
The user type.
UserRegistrationStatus (string) --
The user registration status.
UserInvitationStatus (string) --
The user invite status.
RegisteredOn (datetime) --
Date and time when the user is registered, in ISO 8601 format.
InvitedOn (datetime) --
Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
AlexaForBusinessMetadata (dict) --
The Alexa for Business metadata.
IsAlexaForBusinessEnabled (boolean) --
Starts or stops Alexa for Business.
AlexaForBusinessRoomArn (string) --
The ARN of the room resource.
PersonalPIN (string) --
The user's personal meeting PIN.
Exceptions
Creates an Amazon Chime Voice Connector under the administrator's AWS account. You can choose to create an Amazon Chime Voice Connector in a specific AWS Region.
Enabling CreateVoiceConnectorRequest$RequireEncryption configures your Amazon Chime Voice Connector to use TLS transport for SIP signaling and Secure RTP (SRTP) for media. Inbound calls use TLS transport, and unencrypted outbound calls are blocked.
See also: AWS API Documentation
Request Syntax
response = client.create_voice_connector(
Name='string',
AwsRegion='us-east-1'|'us-west-2',
RequireEncryption=True|False
)
[REQUIRED]
The name of the Amazon Chime Voice Connector.
[REQUIRED]
When enabled, requires encryption for the Amazon Chime Voice Connector.
dict
Response Syntax
{
'VoiceConnector': {
'VoiceConnectorId': 'string',
'AwsRegion': 'us-east-1'|'us-west-2',
'Name': 'string',
'OutboundHostName': 'string',
'RequireEncryption': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
VoiceConnector (dict) --
The Amazon Chime Voice Connector details.
VoiceConnectorId (string) --
The Amazon Chime Voice Connector ID.
AwsRegion (string) --
The AWS Region in which the Amazon Chime Voice Connector is created. Default: us-east-1 .
Name (string) --
The name of the Amazon Chime Voice Connector.
OutboundHostName (string) --
The outbound host name for the Amazon Chime Voice Connector.
RequireEncryption (boolean) --
Designates whether encryption is required for the Amazon Chime Voice Connector.
CreatedTimestamp (datetime) --
The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
Exceptions
Creates an Amazon Chime Voice Connector group under the administrator's AWS account. You can associate Amazon Chime Voice Connectors with the Amazon Chime Voice Connector group by including VoiceConnectorItems in the request.
You can include Amazon Chime Voice Connectors from different AWS Regions in your group. This creates a fault tolerant mechanism for fallback in case of availability events.
See also: AWS API Documentation
Request Syntax
response = client.create_voice_connector_group(
Name='string',
VoiceConnectorItems=[
{
'VoiceConnectorId': 'string',
'Priority': 123
},
]
)
[REQUIRED]
The name of the Amazon Chime Voice Connector group.
The Amazon Chime Voice Connectors to route inbound calls to.
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
The Amazon Chime Voice Connector ID.
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
dict
Response Syntax
{
'VoiceConnectorGroup': {
'VoiceConnectorGroupId': 'string',
'Name': 'string',
'VoiceConnectorItems': [
{
'VoiceConnectorId': 'string',
'Priority': 123
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
VoiceConnectorGroup (dict) --
The Amazon Chime Voice Connector group details.
VoiceConnectorGroupId (string) --
The Amazon Chime Voice Connector group ID.
Name (string) --
The name of the Amazon Chime Voice Connector group.
VoiceConnectorItems (list) --
The Amazon Chime Voice Connectors to which to route inbound calls.
(dict) --
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
VoiceConnectorId (string) --
The Amazon Chime Voice Connector ID.
Priority (integer) --
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
CreatedTimestamp (datetime) --
The Amazon Chime Voice Connector group creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated Amazon Chime Voice Connector group timestamp, in ISO 8601 format.
Exceptions
Deletes the specified Amazon Chime account. You must suspend all users before deleting a Team account. You can use the BatchSuspendUser action to do so.
For EnterpriseLWA and EnterpriseAD accounts, you must release the claimed domains for your Amazon Chime account before deletion. As soon as you release the domain, all users under that account are suspended.
Deleted accounts appear in your Disabled accounts list for 90 days. To restore a deleted account from your Disabled accounts list, you must contact AWS Support.
After 90 days, deleted accounts are permanently removed from your Disabled accounts list.
See also: AWS API Documentation
Request Syntax
response = client.delete_account(
AccountId='string'
)
[REQUIRED]
The Amazon Chime account ID.
{}
Response Structure
Exceptions
Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken . Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.delete_attendee(
MeetingId='string',
AttendeeId='string'
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The Amazon Chime SDK attendee ID.
None
Exceptions
Deletes the events configuration that allows a bot to receive outgoing events.
See also: AWS API Documentation
Request Syntax
response = client.delete_events_configuration(
AccountId='string',
BotId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot ID.
None
Exceptions
Deletes the specified Amazon Chime SDK meeting. When a meeting is deleted, its attendees are also deleted and clients can no longer join it. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.delete_meeting(
MeetingId='string'
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
Exceptions
Moves the specified phone number into the Deletion queue . A phone number must be disassociated from any users or Amazon Chime Voice Connectors before it can be deleted.
Deleted phone numbers remain in the Deletion queue for 7 days before they are deleted permanently.
See also: AWS API Documentation
Request Syntax
response = client.delete_phone_number(
PhoneNumberId='string'
)
[REQUIRED]
The phone number ID.
Exceptions
Deletes the specified proxy session from the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.delete_proxy_session(
VoiceConnectorId='string',
ProxySessionId='string'
)
[REQUIRED]
The Amazon Chime voice connector ID.
[REQUIRED]
The proxy session ID.
None
Exceptions
Deletes a chat room in an Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.delete_room(
AccountId='string',
RoomId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The chat room ID.
None
Exceptions
Removes a member from a chat room in an Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.delete_room_membership(
AccountId='string',
RoomId='string',
MemberId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
[REQUIRED]
The member ID (user ID or bot ID).
None
Exceptions
Deletes the specified Amazon Chime Voice Connector. Any phone numbers associated with the Amazon Chime Voice Connector must be disassociated from it before it can be deleted.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
Exceptions
Deletes the specified Amazon Chime Voice Connector group. Any VoiceConnectorItems and phone numbers associated with the group must be removed before it can be deleted.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector_group(
VoiceConnectorGroupId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector group ID.
Exceptions
Deletes the origination settings for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector_origination(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
Exceptions
Deletes the proxy configuration from the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector_proxy(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
Exceptions
Deletes the streaming configuration for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector_streaming_configuration(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
Exceptions
Deletes the termination settings for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector_termination(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
Exceptions
Deletes the specified SIP credentials used by your equipment to authenticate during call termination.
See also: AWS API Documentation
Request Syntax
response = client.delete_voice_connector_termination_credentials(
VoiceConnectorId='string',
Usernames=[
'string',
]
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format.
None
Exceptions
Disassociates the primary provisioned phone number from the specified Amazon Chime user.
See also: AWS API Documentation
Request Syntax
response = client.disassociate_phone_number_from_user(
AccountId='string',
UserId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
dict
Response Syntax
{}
Response Structure
Exceptions
Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.disassociate_phone_numbers_from_voice_connector(
VoiceConnectorId='string',
E164PhoneNumbers=[
'string',
]
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
List of phone numbers, in E.164 format.
dict
Response Syntax
{
'PhoneNumberErrors': [
{
'PhoneNumberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
PhoneNumberErrors (list) --
If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
(dict) --
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
PhoneNumberId (string) --
The phone number ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector group.
See also: AWS API Documentation
Request Syntax
response = client.disassociate_phone_numbers_from_voice_connector_group(
VoiceConnectorGroupId='string',
E164PhoneNumbers=[
'string',
]
)
[REQUIRED]
The Amazon Chime Voice Connector group ID.
List of phone numbers, in E.164 format.
dict
Response Syntax
{
'PhoneNumberErrors': [
{
'PhoneNumberId': 'string',
'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist',
'ErrorMessage': 'string'
},
]
}
Response Structure
(dict) --
PhoneNumberErrors (list) --
If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
(dict) --
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
PhoneNumberId (string) --
The phone number ID for which the action failed.
ErrorCode (string) --
The error code.
ErrorMessage (string) --
The error message.
Exceptions
Disassociates the specified sign-in delegate groups from the specified Amazon Chime account.
See also: AWS API Documentation
Request Syntax
response = client.disassociate_signin_delegate_groups_from_account(
AccountId='string',
GroupNames=[
'string',
]
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The sign-in delegate group names.
dict
Response Syntax
{}
Response Structure
Exceptions
Generate a presigned url given a client, its method, and arguments
The presigned url
Retrieves details for the specified Amazon Chime account, such as account type and supported licenses.
See also: AWS API Documentation
Request Syntax
response = client.get_account(
AccountId='string'
)
[REQUIRED]
The Amazon Chime account ID.
{
'Account': {
'AwsAccountId': 'string',
'AccountId': 'string',
'Name': 'string',
'AccountType': 'Team'|'EnterpriseDirectory'|'EnterpriseLWA'|'EnterpriseOIDC',
'CreatedTimestamp': datetime(2015, 1, 1),
'DefaultLicense': 'Basic'|'Plus'|'Pro'|'ProTrial',
'SupportedLicenses': [
'Basic'|'Plus'|'Pro'|'ProTrial',
],
'SigninDelegateGroups': [
{
'GroupName': 'string'
},
]
}
}
Response Structure
The Amazon Chime account details.
The AWS account ID.
The Amazon Chime account ID.
The Amazon Chime account name.
The Amazon Chime account type. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
The Amazon Chime account creation timestamp, in ISO 8601 format.
The default license for the Amazon Chime account.
Supported licenses for the Amazon Chime account.
The sign-in delegate groups associated with the account.
An Active Directory (AD) group whose members are granted permission to act as delegates.
The group name.
Exceptions
Retrieves account settings for the specified Amazon Chime account ID, such as remote control and dial out settings. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide .
See also: AWS API Documentation
Request Syntax
response = client.get_account_settings(
AccountId='string'
)
[REQUIRED]
The Amazon Chime account ID.
{
'AccountSettings': {
'DisableRemoteControl': True|False,
'EnableDialOut': True|False
}
}
Response Structure
The Amazon Chime account settings.
Setting that stops or starts remote control of shared screens during meetings.
Setting that allows meeting participants to choose the Call me at a phone number option. For more information, see Join a Meeting without the Amazon Chime App .
Exceptions
Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.get_attendee(
MeetingId='string',
AttendeeId='string'
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The Amazon Chime SDK attendee ID.
dict
Response Syntax
{
'Attendee': {
'ExternalUserId': 'string',
'AttendeeId': 'string',
'JoinToken': 'string'
}
}
Response Structure
(dict) --
Attendee (dict) --
The Amazon Chime SDK attendee information.
ExternalUserId (string) --
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
AttendeeId (string) --
The Amazon Chime SDK attendee ID.
JoinToken (string) --
The join token used by the Amazon Chime SDK attendee.
Exceptions
Retrieves details for the specified bot, such as bot email address, bot type, status, and display name.
See also: AWS API Documentation
Request Syntax
response = client.get_bot(
AccountId='string',
BotId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot ID.
dict
Response Syntax
{
'Bot': {
'BotId': 'string',
'UserId': 'string',
'DisplayName': 'string',
'BotType': 'ChatBot',
'Disabled': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'BotEmail': 'string',
'SecurityToken': 'string'
}
}
Response Structure
(dict) --
Bot (dict) --
The chat bot details.
BotId (string) --
The bot ID.
UserId (string) --
The unique ID for the bot user.
DisplayName (string) --
The bot display name.
BotType (string) --
The bot type.
Disabled (boolean) --
When true, the bot is stopped from running in your account.
CreatedTimestamp (datetime) --
The bot creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated bot timestamp, in ISO 8601 format.
BotEmail (string) --
The bot email address.
SecurityToken (string) --
The security token used to authenticate Amazon Chime with the outgoing event endpoint.
Exceptions
Gets details for an events configuration that allows a bot to receive outgoing events, such as an HTTPS endpoint or Lambda function ARN.
See also: AWS API Documentation
Request Syntax
response = client.get_events_configuration(
AccountId='string',
BotId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot ID.
dict
Response Syntax
{
'EventsConfiguration': {
'BotId': 'string',
'OutboundEventsHTTPSEndpoint': 'string',
'LambdaFunctionArn': 'string'
}
}
Response Structure
(dict) --
EventsConfiguration (dict) --
The events configuration details.
BotId (string) --
The bot ID.
OutboundEventsHTTPSEndpoint (string) --
HTTPS endpoint that allows a bot to receive outgoing events.
LambdaFunctionArn (string) --
Lambda function ARN that allows a bot to receive outgoing events.
Exceptions
Retrieves global settings for the administrator's AWS account, such as Amazon Chime Business Calling and Amazon Chime Voice Connector settings.
See also: AWS API Documentation
Request Syntax
response = client.get_global_settings()
{
'BusinessCalling': {
'CdrBucket': 'string'
},
'VoiceConnector': {
'CdrBucket': 'string'
}
}
Response Structure
The Amazon Chime Business Calling settings.
The Amazon S3 bucket designated for call detail record storage.
The Amazon Chime Voice Connector settings.
The Amazon S3 bucket designated for call detail record storage.
Exceptions
Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.get_meeting(
MeetingId='string'
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
{
'Meeting': {
'MeetingId': 'string',
'ExternalMeetingId': 'string',
'MediaPlacement': {
'AudioHostUrl': 'string',
'AudioFallbackUrl': 'string',
'ScreenDataUrl': 'string',
'ScreenSharingUrl': 'string',
'ScreenViewingUrl': 'string',
'SignalingUrl': 'string',
'TurnControlUrl': 'string'
},
'MediaRegion': 'string'
}
}
Response Structure
The Amazon Chime SDK meeting information.
The Amazon Chime SDK meeting ID.
The external meeting ID.
The media placement for the meeting.
The audio host URL.
The audio fallback URL.
The screen data URL.
The screen sharing URL.
The screen viewing URL.
The signaling URL.
The turn control URL.
The Region in which to create the meeting. Available values: ap-northeast-1 , ap-southeast-1 , ap-southeast-2 , ca-central-1 , eu-central-1 , eu-north-1 , eu-west-1 , eu-west-2 , eu-west-3 , sa-east-1 , us-east-1 , us-east-2 , us-west-1 , us-west-2 .
Exceptions
Create a paginator for an operation.
Retrieves details for the specified phone number ID, such as associations, capabilities, and product type.
See also: AWS API Documentation
Request Syntax
response = client.get_phone_number(
PhoneNumberId='string'
)
[REQUIRED]
The phone number ID.
{
'PhoneNumber': {
'PhoneNumberId': 'string',
'E164PhoneNumber': 'string',
'Type': 'Local'|'TollFree',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'AcquireInProgress'|'AcquireFailed'|'Unassigned'|'Assigned'|'ReleaseInProgress'|'DeleteInProgress'|'ReleaseFailed'|'DeleteFailed',
'Capabilities': {
'InboundCall': True|False,
'OutboundCall': True|False,
'InboundSMS': True|False,
'OutboundSMS': True|False,
'InboundMMS': True|False,
'OutboundMMS': True|False
},
'Associations': [
{
'Value': 'string',
'Name': 'AccountId'|'UserId'|'VoiceConnectorId'|'VoiceConnectorGroupId',
'AssociatedTimestamp': datetime(2015, 1, 1)
},
],
'CallingName': 'string',
'CallingNameStatus': 'Unassigned'|'UpdateInProgress'|'UpdateSucceeded'|'UpdateFailed',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'DeletionTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
The phone number details.
The phone number ID.
The phone number, in E.164 format.
The phone number type.
The phone number product type.
The phone number status.
The phone number capabilities.
Allows or denies inbound calling for the specified phone number.
Allows or denies outbound calling for the specified phone number.
Allows or denies inbound SMS messaging for the specified phone number.
Allows or denies outbound SMS messaging for the specified phone number.
Allows or denies inbound MMS messaging for the specified phone number.
Allows or denies outbound MMS messaging for the specified phone number.
The phone number associations.
The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
Contains the ID for the entity specified in Name.
Defines the association with an Amazon Chime account ID, user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
The timestamp of the phone number association, in ISO 8601 format.
The outbound calling name associated with the phone number.
The outbound calling name status.
The phone number creation timestamp, in ISO 8601 format.
The updated phone number timestamp, in ISO 8601 format.
The deleted phone number timestamp, in ISO 8601 format.
Exceptions
Retrieves details for the specified phone number order, such as order creation timestamp, phone numbers in E.164 format, product type, and order status.
See also: AWS API Documentation
Request Syntax
response = client.get_phone_number_order(
PhoneNumberOrderId='string'
)
[REQUIRED]
The ID for the phone number order.
{
'PhoneNumberOrder': {
'PhoneNumberOrderId': 'string',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'Processing'|'Successful'|'Failed'|'Partial',
'OrderedPhoneNumbers': [
{
'E164PhoneNumber': 'string',
'Status': 'Processing'|'Acquired'|'Failed'
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
The phone number order details.
The phone number order ID.
The phone number order product type.
The status of the phone number order.
The ordered phone number details, such as the phone number in E.164 format and the phone number status.
A phone number for which an order has been placed.
The phone number, in E.164 format.
The phone number status.
The phone number order creation timestamp, in ISO 8601 format.
The updated phone number order timestamp, in ISO 8601 format.
Exceptions
Retrieves the phone number settings for the administrator's AWS account, such as the default outbound calling name.
See also: AWS API Documentation
Request Syntax
response = client.get_phone_number_settings()
{
'CallingName': 'string',
'CallingNameUpdatedTimestamp': datetime(2015, 1, 1)
}
Response Structure
The default outbound calling name for the account.
The updated outbound calling name timestamp, in ISO 8601 format.
Exceptions
Gets the specified proxy session details for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.get_proxy_session(
VoiceConnectorId='string',
ProxySessionId='string'
)
[REQUIRED]
The Amazon Chime voice connector ID.
[REQUIRED]
The proxy session ID.
dict
Response Syntax
{
'ProxySession': {
'VoiceConnectorId': 'string',
'ProxySessionId': 'string',
'Name': 'string',
'Status': 'Open'|'InProgress'|'Closed',
'ExpiryMinutes': 123,
'Capabilities': [
'Voice'|'SMS',
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'EndedTimestamp': datetime(2015, 1, 1),
'Participants': [
{
'PhoneNumber': 'string',
'ProxyPhoneNumber': 'string'
},
],
'NumberSelectionBehavior': 'PreferSticky'|'AvoidSticky',
'GeoMatchLevel': 'Country'|'AreaCode',
'GeoMatchParams': {
'Country': 'string',
'AreaCode': 'string'
}
}
}
Response Structure
(dict) --
ProxySession (dict) --
The proxy session details.
VoiceConnectorId (string) --
The Amazon Chime voice connector ID.
ProxySessionId (string) --
The proxy session ID.
Name (string) --
The name of the proxy session.
Status (string) --
The status of the proxy session.
ExpiryMinutes (integer) --
The number of minutes allowed for the proxy session.
Capabilities (list) --
The proxy session capabilities.
CreatedTimestamp (datetime) --
The created timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated timestamp, in ISO 8601 format.
EndedTimestamp (datetime) --
The ended timestamp, in ISO 8601 format.
Participants (list) --
The proxy session participants.
(dict) --
The phone number and proxy phone number for a participant in an Amazon Chime Voice Connector proxy session.
PhoneNumber (string) --
The participant's phone number.
ProxyPhoneNumber (string) --
The participant's proxy phone number.
NumberSelectionBehavior (string) --
The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
GeoMatchLevel (string) --
The preference for matching the country or area code of the proxy phone number with that of the first participant.
GeoMatchParams (dict) --
The country and area code for the proxy phone number.
Country (string) --
The country.
AreaCode (string) --
The area code.
Exceptions
Retrieves room details, such as the room name, for a room in an Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.get_room(
AccountId='string',
RoomId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
dict
Response Syntax
{
'Room': {
'RoomId': 'string',
'Name': 'string',
'AccountId': 'string',
'CreatedBy': 'string',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
Room (dict) --
The room details.
RoomId (string) --
The room ID.
Name (string) --
The room name.
AccountId (string) --
The Amazon Chime account ID.
CreatedBy (string) --
The identifier of the room creator.
CreatedTimestamp (datetime) --
The room creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The room update timestamp, in ISO 8601 format.
Exceptions
Retrieves details for the specified user ID, such as primary email address, license type, and personal meeting PIN.
To retrieve user details with an email address instead of a user ID, use the ListUsers action, and then filter by email address.
See also: AWS API Documentation
Request Syntax
response = client.get_user(
AccountId='string',
UserId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
dict
Response Syntax
{
'User': {
'UserId': 'string',
'AccountId': 'string',
'PrimaryEmail': 'string',
'PrimaryProvisionedNumber': 'string',
'DisplayName': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'UserRegistrationStatus': 'Unregistered'|'Registered'|'Suspended',
'UserInvitationStatus': 'Pending'|'Accepted'|'Failed',
'RegisteredOn': datetime(2015, 1, 1),
'InvitedOn': datetime(2015, 1, 1),
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
},
'PersonalPIN': 'string'
}
}
Response Structure
(dict) --
User (dict) --
The user details.
UserId (string) --
The user ID.
AccountId (string) --
The Amazon Chime account ID.
PrimaryEmail (string) --
The primary email address of the user.
PrimaryProvisionedNumber (string) --
The primary phone number associated with the user.
DisplayName (string) --
The display name of the user.
LicenseType (string) --
The license type for the user.
UserType (string) --
The user type.
UserRegistrationStatus (string) --
The user registration status.
UserInvitationStatus (string) --
The user invite status.
RegisteredOn (datetime) --
Date and time when the user is registered, in ISO 8601 format.
InvitedOn (datetime) --
Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
AlexaForBusinessMetadata (dict) --
The Alexa for Business metadata.
IsAlexaForBusinessEnabled (boolean) --
Starts or stops Alexa for Business.
AlexaForBusinessRoomArn (string) --
The ARN of the room resource.
PersonalPIN (string) --
The user's personal meeting PIN.
Exceptions
Retrieves settings for the specified user ID, such as any associated phone number settings.
See also: AWS API Documentation
Request Syntax
response = client.get_user_settings(
AccountId='string',
UserId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
dict
Response Syntax
{
'UserSettings': {
'Telephony': {
'InboundCalling': True|False,
'OutboundCalling': True|False,
'SMS': True|False
}
}
}
Response Structure
(dict) --
UserSettings (dict) --
The user settings.
Telephony (dict) --
The telephony settings associated with the user.
InboundCalling (boolean) --
Allows or denies inbound calling.
OutboundCalling (boolean) --
Allows or denies outbound calling.
SMS (boolean) --
Allows or denies SMS messaging.
Exceptions
Retrieves details for the specified Amazon Chime Voice Connector, such as timestamps, name, outbound host, and encryption requirements.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'VoiceConnector': {
'VoiceConnectorId': 'string',
'AwsRegion': 'us-east-1'|'us-west-2',
'Name': 'string',
'OutboundHostName': 'string',
'RequireEncryption': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
The Amazon Chime Voice Connector details.
The Amazon Chime Voice Connector ID.
The AWS Region in which the Amazon Chime Voice Connector is created. Default: us-east-1 .
The name of the Amazon Chime Voice Connector.
The outbound host name for the Amazon Chime Voice Connector.
Designates whether encryption is required for the Amazon Chime Voice Connector.
The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
Exceptions
Retrieves details for the specified Amazon Chime Voice Connector group, such as timestamps, name, and associated VoiceConnectorItems .
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_group(
VoiceConnectorGroupId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector group ID.
{
'VoiceConnectorGroup': {
'VoiceConnectorGroupId': 'string',
'Name': 'string',
'VoiceConnectorItems': [
{
'VoiceConnectorId': 'string',
'Priority': 123
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
The Amazon Chime Voice Connector group details.
The Amazon Chime Voice Connector group ID.
The name of the Amazon Chime Voice Connector group.
The Amazon Chime Voice Connectors to which to route inbound calls.
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
The Amazon Chime Voice Connector ID.
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
The Amazon Chime Voice Connector group creation timestamp, in ISO 8601 format.
The updated Amazon Chime Voice Connector group timestamp, in ISO 8601 format.
Exceptions
Retrieves the logging configuration details for the specified Amazon Chime Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_logging_configuration(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'LoggingConfiguration': {
'EnableSIPLogs': True|False
}
}
Response Structure
The logging configuration details.
When true, enables SIP message logs for sending to Amazon CloudWatch Logs.
Exceptions
Retrieves origination setting details for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_origination(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'Origination': {
'Routes': [
{
'Host': 'string',
'Port': 123,
'Protocol': 'TCP'|'UDP',
'Priority': 123,
'Weight': 123
},
],
'Disabled': True|False
}
}
Response Structure
The origination setting details.
The call distribution properties defined for your SIP hosts. Valid range: Minimum value of 1. Maximum value of 20.
Origination routes define call distribution properties for your SIP hosts to receive inbound calls using your Amazon Chime Voice Connector. Limit: Ten origination routes for each Amazon Chime Voice Connector.
The FQDN or IP address to contact for origination traffic.
The designated origination route port. Defaults to 5060.
The protocol to use for the origination route. Encryption-enabled Amazon Chime Voice Connectors use TCP protocol by default.
The priority associated with the host, with 1 being the highest priority. Higher priority hosts are attempted first.
The weight associated with the host. If hosts are equal in priority, calls are distributed among them based on their relative weight.
When origination settings are disabled, inbound calls are not enabled for your Amazon Chime Voice Connector.
Exceptions
Gets the proxy configuration details for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_proxy(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime voice connector ID.
{
'Proxy': {
'DefaultSessionExpiryMinutes': 123,
'Disabled': True|False,
'FallBackPhoneNumber': 'string',
'PhoneNumberCountries': [
'string',
]
}
}
Response Structure
The proxy configuration details.
The default number of minutes allowed for proxy sessions.
When true, stops proxy sessions from being created on the specified Amazon Chime Voice Connector.
The phone number to route calls to after a proxy session expires.
The countries for proxy phone numbers to be selected from.
Exceptions
Retrieves the streaming configuration details for the specified Amazon Chime Voice Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis. It also shows the retention period, in hours, for the Amazon Kinesis data.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_streaming_configuration(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'StreamingConfiguration': {
'DataRetentionInHours': 123,
'Disabled': True|False
}
}
Response Structure
The streaming configuration details.
The retention period, in hours, for the Amazon Kinesis data.
When true, media streaming to Amazon Kinesis is turned off.
Exceptions
Retrieves termination setting details for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_termination(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'Termination': {
'CpsLimit': 123,
'DefaultPhoneNumber': 'string',
'CallingRegions': [
'string',
],
'CidrAllowedList': [
'string',
],
'Disabled': True|False
}
}
Response Structure
The termination setting details.
The limit on calls per second. Max value based on account service quota. Default value of 1.
The default caller ID phone number.
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
The IP addresses allowed to make calls, in CIDR format. Required.
When termination settings are disabled, outbound calls can not be made.
Exceptions
Retrieves information about the last time a SIP OPTIONS ping was received from your SIP infrastructure for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.get_voice_connector_termination_health(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'TerminationHealth': {
'Timestamp': datetime(2015, 1, 1),
'Source': 'string'
}
}
Response Structure
The termination health details.
The timestamp, in ISO 8601 format.
The source IP address.
Exceptions
Returns an object that can wait for some condition.
Sends email to a maximum of 50 users, inviting them to the specified Amazon Chime Team account. Only Team account types are currently supported for this action.
See also: AWS API Documentation
Request Syntax
response = client.invite_users(
AccountId='string',
UserEmailList=[
'string',
],
UserType='PrivateUser'|'SharedDevice'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user email addresses to which to send the email invitation.
dict
Response Syntax
{
'Invites': [
{
'InviteId': 'string',
'Status': 'Pending'|'Accepted'|'Failed',
'EmailAddress': 'string',
'EmailStatus': 'NotSent'|'Sent'|'Failed'
},
]
}
Response Structure
(dict) --
Invites (list) --
The email invitation details.
(dict) --
Invitation object returned after emailing users to invite them to join the Amazon Chime Team account.
InviteId (string) --
The invite ID.
Status (string) --
The status of the invite.
EmailAddress (string) --
The email address to which the invite is sent.
EmailStatus (string) --
The status of the invite email.
Exceptions
Lists the Amazon Chime accounts under the administrator's AWS account. You can filter accounts by account name prefix. To find out which Amazon Chime account a user belongs to, you can filter by the user's email address, which returns one account result.
See also: AWS API Documentation
Request Syntax
response = client.list_accounts(
Name='string',
UserEmail='string',
NextToken='string',
MaxResults=123
)
dict
Response Syntax
{
'Accounts': [
{
'AwsAccountId': 'string',
'AccountId': 'string',
'Name': 'string',
'AccountType': 'Team'|'EnterpriseDirectory'|'EnterpriseLWA'|'EnterpriseOIDC',
'CreatedTimestamp': datetime(2015, 1, 1),
'DefaultLicense': 'Basic'|'Plus'|'Pro'|'ProTrial',
'SupportedLicenses': [
'Basic'|'Plus'|'Pro'|'ProTrial',
],
'SigninDelegateGroups': [
{
'GroupName': 'string'
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Accounts (list) --
List of Amazon Chime accounts and account details.
(dict) --
The Amazon Chime account details. An AWS account can have multiple Amazon Chime accounts.
AwsAccountId (string) --
The AWS account ID.
AccountId (string) --
The Amazon Chime account ID.
Name (string) --
The Amazon Chime account name.
AccountType (string) --
The Amazon Chime account type. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
CreatedTimestamp (datetime) --
The Amazon Chime account creation timestamp, in ISO 8601 format.
DefaultLicense (string) --
The default license for the Amazon Chime account.
SupportedLicenses (list) --
Supported licenses for the Amazon Chime account.
SigninDelegateGroups (list) --
The sign-in delegate groups associated with the account.
(dict) --
An Active Directory (AD) group whose members are granted permission to act as delegates.
GroupName (string) --
The group name.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the tags applied to an Amazon Chime SDK attendee resource.
See also: AWS API Documentation
Request Syntax
response = client.list_attendee_tags(
MeetingId='string',
AttendeeId='string'
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The Amazon Chime SDK attendee ID.
dict
Response Syntax
{
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
}
Response Structure
(dict) --
Tags (list) --
A list of tag key-value pairs.
(dict) --
Describes a tag applied to a resource.
Key (string) --
The key of the tag.
Value (string) --
The value of the tag.
Exceptions
Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.list_attendees(
MeetingId='string',
NextToken='string',
MaxResults=123
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
dict
Response Syntax
{
'Attendees': [
{
'ExternalUserId': 'string',
'AttendeeId': 'string',
'JoinToken': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Attendees (list) --
The Amazon Chime SDK attendee information.
(dict) --
An Amazon Chime SDK meeting attendee. Includes a unique AttendeeId and JoinToken . The JoinToken allows a client to authenticate and join as the specified attendee. The JoinToken expires when the meeting ends or when DeleteAttendee is called. After that, the attendee is unable to join the meeting.
We recommend securely transferring each JoinToken from your server application to the client so that no other client has access to the token except for the one authorized to represent the attendee.
ExternalUserId (string) --
The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.
AttendeeId (string) --
The Amazon Chime SDK attendee ID.
JoinToken (string) --
The join token used by the Amazon Chime SDK attendee.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the bots associated with the administrator's Amazon Chime Enterprise account ID.
See also: AWS API Documentation
Request Syntax
response = client.list_bots(
AccountId='string',
MaxResults=123,
NextToken='string'
)
[REQUIRED]
The Amazon Chime account ID.
dict
Response Syntax
{
'Bots': [
{
'BotId': 'string',
'UserId': 'string',
'DisplayName': 'string',
'BotType': 'ChatBot',
'Disabled': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'BotEmail': 'string',
'SecurityToken': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Bots (list) --
List of bots and bot details.
(dict) --
A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.
BotId (string) --
The bot ID.
UserId (string) --
The unique ID for the bot user.
DisplayName (string) --
The bot display name.
BotType (string) --
The bot type.
Disabled (boolean) --
When true, the bot is stopped from running in your account.
CreatedTimestamp (datetime) --
The bot creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated bot timestamp, in ISO 8601 format.
BotEmail (string) --
The bot email address.
SecurityToken (string) --
The security token used to authenticate Amazon Chime with the outgoing event endpoint.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the tags applied to an Amazon Chime SDK meeting resource.
See also: AWS API Documentation
Request Syntax
response = client.list_meeting_tags(
MeetingId='string'
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
{
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
}
Response Structure
A list of tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
Exceptions
Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.list_meetings(
NextToken='string',
MaxResults=123
)
dict
Response Syntax
{
'Meetings': [
{
'MeetingId': 'string',
'ExternalMeetingId': 'string',
'MediaPlacement': {
'AudioHostUrl': 'string',
'AudioFallbackUrl': 'string',
'ScreenDataUrl': 'string',
'ScreenSharingUrl': 'string',
'ScreenViewingUrl': 'string',
'SignalingUrl': 'string',
'TurnControlUrl': 'string'
},
'MediaRegion': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Meetings (list) --
The Amazon Chime SDK meeting information.
(dict) --
A meeting created using the Amazon Chime SDK.
MeetingId (string) --
The Amazon Chime SDK meeting ID.
ExternalMeetingId (string) --
The external meeting ID.
MediaPlacement (dict) --
The media placement for the meeting.
AudioHostUrl (string) --
The audio host URL.
AudioFallbackUrl (string) --
The audio fallback URL.
ScreenDataUrl (string) --
The screen data URL.
ScreenSharingUrl (string) --
The screen sharing URL.
ScreenViewingUrl (string) --
The screen viewing URL.
SignalingUrl (string) --
The signaling URL.
TurnControlUrl (string) --
The turn control URL.
MediaRegion (string) --
The Region in which to create the meeting. Available values: ap-northeast-1 , ap-southeast-1 , ap-southeast-2 , ca-central-1 , eu-central-1 , eu-north-1 , eu-west-1 , eu-west-2 , eu-west-3 , sa-east-1 , us-east-1 , us-east-2 , us-west-1 , us-west-2 .
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the phone number orders for the administrator's Amazon Chime account.
See also: AWS API Documentation
Request Syntax
response = client.list_phone_number_orders(
NextToken='string',
MaxResults=123
)
dict
Response Syntax
{
'PhoneNumberOrders': [
{
'PhoneNumberOrderId': 'string',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'Processing'|'Successful'|'Failed'|'Partial',
'OrderedPhoneNumbers': [
{
'E164PhoneNumber': 'string',
'Status': 'Processing'|'Acquired'|'Failed'
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
PhoneNumberOrders (list) --
The phone number order details.
(dict) --
The details of a phone number order created for Amazon Chime.
PhoneNumberOrderId (string) --
The phone number order ID.
ProductType (string) --
The phone number order product type.
Status (string) --
The status of the phone number order.
OrderedPhoneNumbers (list) --
The ordered phone number details, such as the phone number in E.164 format and the phone number status.
(dict) --
A phone number for which an order has been placed.
E164PhoneNumber (string) --
The phone number, in E.164 format.
Status (string) --
The phone number status.
CreatedTimestamp (datetime) --
The phone number order creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated phone number order timestamp, in ISO 8601 format.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the phone numbers for the specified Amazon Chime account, Amazon Chime user, Amazon Chime Voice Connector, or Amazon Chime Voice Connector group.
See also: AWS API Documentation
Request Syntax
response = client.list_phone_numbers(
Status='AcquireInProgress'|'AcquireFailed'|'Unassigned'|'Assigned'|'ReleaseInProgress'|'DeleteInProgress'|'ReleaseFailed'|'DeleteFailed',
ProductType='BusinessCalling'|'VoiceConnector',
FilterName='AccountId'|'UserId'|'VoiceConnectorId'|'VoiceConnectorGroupId',
FilterValue='string',
MaxResults=123,
NextToken='string'
)
dict
Response Syntax
{
'PhoneNumbers': [
{
'PhoneNumberId': 'string',
'E164PhoneNumber': 'string',
'Type': 'Local'|'TollFree',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'AcquireInProgress'|'AcquireFailed'|'Unassigned'|'Assigned'|'ReleaseInProgress'|'DeleteInProgress'|'ReleaseFailed'|'DeleteFailed',
'Capabilities': {
'InboundCall': True|False,
'OutboundCall': True|False,
'InboundSMS': True|False,
'OutboundSMS': True|False,
'InboundMMS': True|False,
'OutboundMMS': True|False
},
'Associations': [
{
'Value': 'string',
'Name': 'AccountId'|'UserId'|'VoiceConnectorId'|'VoiceConnectorGroupId',
'AssociatedTimestamp': datetime(2015, 1, 1)
},
],
'CallingName': 'string',
'CallingNameStatus': 'Unassigned'|'UpdateInProgress'|'UpdateSucceeded'|'UpdateFailed',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'DeletionTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
PhoneNumbers (list) --
The phone number details.
(dict) --
A phone number used for Amazon Chime Business Calling or an Amazon Chime Voice Connector.
PhoneNumberId (string) --
The phone number ID.
E164PhoneNumber (string) --
The phone number, in E.164 format.
Type (string) --
The phone number type.
ProductType (string) --
The phone number product type.
Status (string) --
The phone number status.
Capabilities (dict) --
The phone number capabilities.
InboundCall (boolean) --
Allows or denies inbound calling for the specified phone number.
OutboundCall (boolean) --
Allows or denies outbound calling for the specified phone number.
InboundSMS (boolean) --
Allows or denies inbound SMS messaging for the specified phone number.
OutboundSMS (boolean) --
Allows or denies outbound SMS messaging for the specified phone number.
InboundMMS (boolean) --
Allows or denies inbound MMS messaging for the specified phone number.
OutboundMMS (boolean) --
Allows or denies outbound MMS messaging for the specified phone number.
Associations (list) --
The phone number associations.
(dict) --
The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
Value (string) --
Contains the ID for the entity specified in Name.
Name (string) --
Defines the association with an Amazon Chime account ID, user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
AssociatedTimestamp (datetime) --
The timestamp of the phone number association, in ISO 8601 format.
CallingName (string) --
The outbound calling name associated with the phone number.
CallingNameStatus (string) --
The outbound calling name status.
CreatedTimestamp (datetime) --
The phone number creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated phone number timestamp, in ISO 8601 format.
DeletionTimestamp (datetime) --
The deleted phone number timestamp, in ISO 8601 format.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the proxy sessions for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.list_proxy_sessions(
VoiceConnectorId='string',
Status='Open'|'InProgress'|'Closed',
NextToken='string',
MaxResults=123
)
[REQUIRED]
The Amazon Chime voice connector ID.
dict
Response Syntax
{
'ProxySessions': [
{
'VoiceConnectorId': 'string',
'ProxySessionId': 'string',
'Name': 'string',
'Status': 'Open'|'InProgress'|'Closed',
'ExpiryMinutes': 123,
'Capabilities': [
'Voice'|'SMS',
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'EndedTimestamp': datetime(2015, 1, 1),
'Participants': [
{
'PhoneNumber': 'string',
'ProxyPhoneNumber': 'string'
},
],
'NumberSelectionBehavior': 'PreferSticky'|'AvoidSticky',
'GeoMatchLevel': 'Country'|'AreaCode',
'GeoMatchParams': {
'Country': 'string',
'AreaCode': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
ProxySessions (list) --
The proxy session details.
(dict) --
The proxy session for an Amazon Chime Voice Connector.
VoiceConnectorId (string) --
The Amazon Chime voice connector ID.
ProxySessionId (string) --
The proxy session ID.
Name (string) --
The name of the proxy session.
Status (string) --
The status of the proxy session.
ExpiryMinutes (integer) --
The number of minutes allowed for the proxy session.
Capabilities (list) --
The proxy session capabilities.
CreatedTimestamp (datetime) --
The created timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated timestamp, in ISO 8601 format.
EndedTimestamp (datetime) --
The ended timestamp, in ISO 8601 format.
Participants (list) --
The proxy session participants.
(dict) --
The phone number and proxy phone number for a participant in an Amazon Chime Voice Connector proxy session.
PhoneNumber (string) --
The participant's phone number.
ProxyPhoneNumber (string) --
The participant's proxy phone number.
NumberSelectionBehavior (string) --
The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
GeoMatchLevel (string) --
The preference for matching the country or area code of the proxy phone number with that of the first participant.
GeoMatchParams (dict) --
The country and area code for the proxy phone number.
Country (string) --
The country.
AreaCode (string) --
The area code.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the membership details for the specified room in an Amazon Chime Enterprise account, such as the members' IDs, email addresses, and names.
See also: AWS API Documentation
Request Syntax
response = client.list_room_memberships(
AccountId='string',
RoomId='string',
MaxResults=123,
NextToken='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
dict
Response Syntax
{
'RoomMemberships': [
{
'RoomId': 'string',
'Member': {
'MemberId': 'string',
'MemberType': 'User'|'Bot'|'Webhook',
'Email': 'string',
'FullName': 'string',
'AccountId': 'string'
},
'Role': 'Administrator'|'Member',
'InvitedBy': 'string',
'UpdatedTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
RoomMemberships (list) --
The room membership details.
(dict) --
The room membership details.
RoomId (string) --
The room ID.
Member (dict) --
The member details, such as email address, name, member ID, and member type.
MemberId (string) --
The member ID (user ID or bot ID).
MemberType (string) --
The member type.
Email (string) --
The member email address.
FullName (string) --
The member name.
AccountId (string) --
The Amazon Chime account ID.
Role (string) --
The membership role.
InvitedBy (string) --
The identifier of the user that invited the room member.
UpdatedTimestamp (datetime) --
The room membership update timestamp, in ISO 8601 format.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the room details for the specified Amazon Chime Enterprise account. Optionally, filter the results by a member ID (user ID or bot ID) to see a list of rooms that the member belongs to.
See also: AWS API Documentation
Request Syntax
response = client.list_rooms(
AccountId='string',
MemberId='string',
MaxResults=123,
NextToken='string'
)
[REQUIRED]
The Amazon Chime account ID.
dict
Response Syntax
{
'Rooms': [
{
'RoomId': 'string',
'Name': 'string',
'AccountId': 'string',
'CreatedBy': 'string',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Rooms (list) --
The room details.
(dict) --
The Amazon Chime chat room details.
RoomId (string) --
The room ID.
Name (string) --
The room name.
AccountId (string) --
The Amazon Chime account ID.
CreatedBy (string) --
The identifier of the room creator.
CreatedTimestamp (datetime) --
The room creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The room update timestamp, in ISO 8601 format.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the tags applied to an Amazon Chime SDK meeting resource.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
ResourceARN='string'
)
[REQUIRED]
The resource ARN.
{
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
}
Response Structure
A list of tag-key value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
Exceptions
Lists the users that belong to the specified Amazon Chime account. You can specify an email address to list only the user that the email address belongs to.
See also: AWS API Documentation
Request Syntax
response = client.list_users(
AccountId='string',
UserEmail='string',
UserType='PrivateUser'|'SharedDevice',
MaxResults=123,
NextToken='string'
)
[REQUIRED]
The Amazon Chime account ID.
dict
Response Syntax
{
'Users': [
{
'UserId': 'string',
'AccountId': 'string',
'PrimaryEmail': 'string',
'PrimaryProvisionedNumber': 'string',
'DisplayName': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'UserRegistrationStatus': 'Unregistered'|'Registered'|'Suspended',
'UserInvitationStatus': 'Pending'|'Accepted'|'Failed',
'RegisteredOn': datetime(2015, 1, 1),
'InvitedOn': datetime(2015, 1, 1),
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
},
'PersonalPIN': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Users (list) --
List of users and user details.
(dict) --
The user on the Amazon Chime account.
UserId (string) --
The user ID.
AccountId (string) --
The Amazon Chime account ID.
PrimaryEmail (string) --
The primary email address of the user.
PrimaryProvisionedNumber (string) --
The primary phone number associated with the user.
DisplayName (string) --
The display name of the user.
LicenseType (string) --
The license type for the user.
UserType (string) --
The user type.
UserRegistrationStatus (string) --
The user registration status.
UserInvitationStatus (string) --
The user invite status.
RegisteredOn (datetime) --
Date and time when the user is registered, in ISO 8601 format.
InvitedOn (datetime) --
Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
AlexaForBusinessMetadata (dict) --
The Alexa for Business metadata.
IsAlexaForBusinessEnabled (boolean) --
Starts or stops Alexa for Business.
AlexaForBusinessRoomArn (string) --
The ARN of the room resource.
PersonalPIN (string) --
The user's personal meeting PIN.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the Amazon Chime Voice Connector groups for the administrator's AWS account.
See also: AWS API Documentation
Request Syntax
response = client.list_voice_connector_groups(
NextToken='string',
MaxResults=123
)
dict
Response Syntax
{
'VoiceConnectorGroups': [
{
'VoiceConnectorGroupId': 'string',
'Name': 'string',
'VoiceConnectorItems': [
{
'VoiceConnectorId': 'string',
'Priority': 123
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
VoiceConnectorGroups (list) --
The details of the Amazon Chime Voice Connector groups.
(dict) --
The Amazon Chime Voice Connector group configuration, including associated Amazon Chime Voice Connectors. You can include Amazon Chime Voice Connectors from different AWS Regions in your group. This creates a fault tolerant mechanism for fallback in case of availability events.
VoiceConnectorGroupId (string) --
The Amazon Chime Voice Connector group ID.
Name (string) --
The name of the Amazon Chime Voice Connector group.
VoiceConnectorItems (list) --
The Amazon Chime Voice Connectors to which to route inbound calls.
(dict) --
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
VoiceConnectorId (string) --
The Amazon Chime Voice Connector ID.
Priority (integer) --
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
CreatedTimestamp (datetime) --
The Amazon Chime Voice Connector group creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated Amazon Chime Voice Connector group timestamp, in ISO 8601 format.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Lists the SIP credentials for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.list_voice_connector_termination_credentials(
VoiceConnectorId='string'
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
{
'Usernames': [
'string',
]
}
Response Structure
A list of user names.
Exceptions
Lists the Amazon Chime Voice Connectors for the administrator's AWS account.
See also: AWS API Documentation
Request Syntax
response = client.list_voice_connectors(
NextToken='string',
MaxResults=123
)
dict
Response Syntax
{
'VoiceConnectors': [
{
'VoiceConnectorId': 'string',
'AwsRegion': 'us-east-1'|'us-west-2',
'Name': 'string',
'OutboundHostName': 'string',
'RequireEncryption': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
VoiceConnectors (list) --
The details of the Amazon Chime Voice Connectors.
(dict) --
The Amazon Chime Voice Connector configuration, including outbound host name and encryption settings.
VoiceConnectorId (string) --
The Amazon Chime Voice Connector ID.
AwsRegion (string) --
The AWS Region in which the Amazon Chime Voice Connector is created. Default: us-east-1 .
Name (string) --
The name of the Amazon Chime Voice Connector.
OutboundHostName (string) --
The outbound host name for the Amazon Chime Voice Connector.
RequireEncryption (boolean) --
Designates whether encryption is required for the Amazon Chime Voice Connector.
CreatedTimestamp (datetime) --
The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
NextToken (string) --
The token to use to retrieve the next page of results.
Exceptions
Logs out the specified user from all of the devices they are currently logged into.
See also: AWS API Documentation
Request Syntax
response = client.logout_user(
AccountId='string',
UserId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
dict
Response Syntax
{}
Response Structure
Exceptions
Creates an events configuration that allows a bot to receive outgoing events sent by Amazon Chime. Choose either an HTTPS endpoint or a Lambda function ARN. For more information, see Bot .
See also: AWS API Documentation
Request Syntax
response = client.put_events_configuration(
AccountId='string',
BotId='string',
OutboundEventsHTTPSEndpoint='string',
LambdaFunctionArn='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot ID.
dict
Response Syntax
{
'EventsConfiguration': {
'BotId': 'string',
'OutboundEventsHTTPSEndpoint': 'string',
'LambdaFunctionArn': 'string'
}
}
Response Structure
(dict) --
EventsConfiguration (dict) --
The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.
BotId (string) --
The bot ID.
OutboundEventsHTTPSEndpoint (string) --
HTTPS endpoint that allows a bot to receive outgoing events.
LambdaFunctionArn (string) --
Lambda function ARN that allows a bot to receive outgoing events.
Exceptions
Adds a logging configuration for the specified Amazon Chime Voice Connector. The logging configuration specifies whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
See also: AWS API Documentation
Request Syntax
response = client.put_voice_connector_logging_configuration(
VoiceConnectorId='string',
LoggingConfiguration={
'EnableSIPLogs': True|False
}
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
[REQUIRED]
The logging configuration details to add.
When true, enables SIP message logs for sending to Amazon CloudWatch Logs.
dict
Response Syntax
{
'LoggingConfiguration': {
'EnableSIPLogs': True|False
}
}
Response Structure
(dict) --
LoggingConfiguration (dict) --
The updated logging configuration details.
EnableSIPLogs (boolean) --
When true, enables SIP message logs for sending to Amazon CloudWatch Logs.
Exceptions
Adds origination settings for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.put_voice_connector_origination(
VoiceConnectorId='string',
Origination={
'Routes': [
{
'Host': 'string',
'Port': 123,
'Protocol': 'TCP'|'UDP',
'Priority': 123,
'Weight': 123
},
],
'Disabled': True|False
}
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
[REQUIRED]
The origination setting details to add.
The call distribution properties defined for your SIP hosts. Valid range: Minimum value of 1. Maximum value of 20.
Origination routes define call distribution properties for your SIP hosts to receive inbound calls using your Amazon Chime Voice Connector. Limit: Ten origination routes for each Amazon Chime Voice Connector.
The FQDN or IP address to contact for origination traffic.
The designated origination route port. Defaults to 5060.
The protocol to use for the origination route. Encryption-enabled Amazon Chime Voice Connectors use TCP protocol by default.
The priority associated with the host, with 1 being the highest priority. Higher priority hosts are attempted first.
The weight associated with the host. If hosts are equal in priority, calls are distributed among them based on their relative weight.
When origination settings are disabled, inbound calls are not enabled for your Amazon Chime Voice Connector.
dict
Response Syntax
{
'Origination': {
'Routes': [
{
'Host': 'string',
'Port': 123,
'Protocol': 'TCP'|'UDP',
'Priority': 123,
'Weight': 123
},
],
'Disabled': True|False
}
}
Response Structure
(dict) --
Origination (dict) --
The updated origination setting details.
Routes (list) --
The call distribution properties defined for your SIP hosts. Valid range: Minimum value of 1. Maximum value of 20.
(dict) --
Origination routes define call distribution properties for your SIP hosts to receive inbound calls using your Amazon Chime Voice Connector. Limit: Ten origination routes for each Amazon Chime Voice Connector.
Host (string) --
The FQDN or IP address to contact for origination traffic.
Port (integer) --
The designated origination route port. Defaults to 5060.
Protocol (string) --
The protocol to use for the origination route. Encryption-enabled Amazon Chime Voice Connectors use TCP protocol by default.
Priority (integer) --
The priority associated with the host, with 1 being the highest priority. Higher priority hosts are attempted first.
Weight (integer) --
The weight associated with the host. If hosts are equal in priority, calls are distributed among them based on their relative weight.
Disabled (boolean) --
When origination settings are disabled, inbound calls are not enabled for your Amazon Chime Voice Connector.
Exceptions
Puts the specified proxy configuration to the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.put_voice_connector_proxy(
VoiceConnectorId='string',
DefaultSessionExpiryMinutes=123,
PhoneNumberPoolCountries=[
'string',
],
FallBackPhoneNumber='string',
Disabled=True|False
)
[REQUIRED]
The Amazon Chime voice connector ID.
[REQUIRED]
The default number of minutes allowed for proxy sessions.
[REQUIRED]
The countries for proxy phone numbers to be selected from.
dict
Response Syntax
{
'Proxy': {
'DefaultSessionExpiryMinutes': 123,
'Disabled': True|False,
'FallBackPhoneNumber': 'string',
'PhoneNumberCountries': [
'string',
]
}
}
Response Structure
(dict) --
Proxy (dict) --
The proxy configuration details.
DefaultSessionExpiryMinutes (integer) --
The default number of minutes allowed for proxy sessions.
Disabled (boolean) --
When true, stops proxy sessions from being created on the specified Amazon Chime Voice Connector.
FallBackPhoneNumber (string) --
The phone number to route calls to after a proxy session expires.
PhoneNumberCountries (list) --
The countries for proxy phone numbers to be selected from.
Exceptions
Adds a streaming configuration for the specified Amazon Chime Voice Connector. The streaming configuration specifies whether media streaming is enabled for sending to Amazon Kinesis. It also sets the retention period, in hours, for the Amazon Kinesis data.
See also: AWS API Documentation
Request Syntax
response = client.put_voice_connector_streaming_configuration(
VoiceConnectorId='string',
StreamingConfiguration={
'DataRetentionInHours': 123,
'Disabled': True|False
}
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
[REQUIRED]
The streaming configuration details to add.
The retention period, in hours, for the Amazon Kinesis data.
When true, media streaming to Amazon Kinesis is turned off.
dict
Response Syntax
{
'StreamingConfiguration': {
'DataRetentionInHours': 123,
'Disabled': True|False
}
}
Response Structure
(dict) --
StreamingConfiguration (dict) --
The updated streaming configuration details.
DataRetentionInHours (integer) --
The retention period, in hours, for the Amazon Kinesis data.
Disabled (boolean) --
When true, media streaming to Amazon Kinesis is turned off.
Exceptions
Adds termination settings for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.put_voice_connector_termination(
VoiceConnectorId='string',
Termination={
'CpsLimit': 123,
'DefaultPhoneNumber': 'string',
'CallingRegions': [
'string',
],
'CidrAllowedList': [
'string',
],
'Disabled': True|False
}
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
[REQUIRED]
The termination setting details to add.
The limit on calls per second. Max value based on account service quota. Default value of 1.
The default caller ID phone number.
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
The IP addresses allowed to make calls, in CIDR format. Required.
When termination settings are disabled, outbound calls can not be made.
dict
Response Syntax
{
'Termination': {
'CpsLimit': 123,
'DefaultPhoneNumber': 'string',
'CallingRegions': [
'string',
],
'CidrAllowedList': [
'string',
],
'Disabled': True|False
}
}
Response Structure
(dict) --
Termination (dict) --
The updated termination setting details.
CpsLimit (integer) --
The limit on calls per second. Max value based on account service quota. Default value of 1.
DefaultPhoneNumber (string) --
The default caller ID phone number.
CallingRegions (list) --
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
CidrAllowedList (list) --
The IP addresses allowed to make calls, in CIDR format. Required.
Disabled (boolean) --
When termination settings are disabled, outbound calls can not be made.
Exceptions
Adds termination SIP credentials for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.put_voice_connector_termination_credentials(
VoiceConnectorId='string',
Credentials=[
{
'Username': 'string',
'Password': 'string'
},
]
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
The termination SIP credentials.
The SIP credentials used to authenticate requests to your Amazon Chime Voice Connector.
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
None
Exceptions
Regenerates the security token for a bot.
See also: AWS API Documentation
Request Syntax
response = client.regenerate_security_token(
AccountId='string',
BotId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot ID.
dict
Response Syntax
{
'Bot': {
'BotId': 'string',
'UserId': 'string',
'DisplayName': 'string',
'BotType': 'ChatBot',
'Disabled': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'BotEmail': 'string',
'SecurityToken': 'string'
}
}
Response Structure
(dict) --
Bot (dict) --
A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.
BotId (string) --
The bot ID.
UserId (string) --
The unique ID for the bot user.
DisplayName (string) --
The bot display name.
BotType (string) --
The bot type.
Disabled (boolean) --
When true, the bot is stopped from running in your account.
CreatedTimestamp (datetime) --
The bot creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated bot timestamp, in ISO 8601 format.
BotEmail (string) --
The bot email address.
SecurityToken (string) --
The security token used to authenticate Amazon Chime with the outgoing event endpoint.
Exceptions
Resets the personal meeting PIN for the specified user on an Amazon Chime account. Returns the User object with the updated personal meeting PIN.
See also: AWS API Documentation
Request Syntax
response = client.reset_personal_pin(
AccountId='string',
UserId='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
dict
Response Syntax
{
'User': {
'UserId': 'string',
'AccountId': 'string',
'PrimaryEmail': 'string',
'PrimaryProvisionedNumber': 'string',
'DisplayName': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'UserRegistrationStatus': 'Unregistered'|'Registered'|'Suspended',
'UserInvitationStatus': 'Pending'|'Accepted'|'Failed',
'RegisteredOn': datetime(2015, 1, 1),
'InvitedOn': datetime(2015, 1, 1),
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
},
'PersonalPIN': 'string'
}
}
Response Structure
(dict) --
User (dict) --
The user details and new personal meeting PIN.
UserId (string) --
The user ID.
AccountId (string) --
The Amazon Chime account ID.
PrimaryEmail (string) --
The primary email address of the user.
PrimaryProvisionedNumber (string) --
The primary phone number associated with the user.
DisplayName (string) --
The display name of the user.
LicenseType (string) --
The license type for the user.
UserType (string) --
The user type.
UserRegistrationStatus (string) --
The user registration status.
UserInvitationStatus (string) --
The user invite status.
RegisteredOn (datetime) --
Date and time when the user is registered, in ISO 8601 format.
InvitedOn (datetime) --
Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
AlexaForBusinessMetadata (dict) --
The Alexa for Business metadata.
IsAlexaForBusinessEnabled (boolean) --
Starts or stops Alexa for Business.
AlexaForBusinessRoomArn (string) --
The ARN of the room resource.
PersonalPIN (string) --
The user's personal meeting PIN.
Exceptions
Moves a phone number from the Deletion queue back into the phone number Inventory .
See also: AWS API Documentation
Request Syntax
response = client.restore_phone_number(
PhoneNumberId='string'
)
[REQUIRED]
The phone number.
{
'PhoneNumber': {
'PhoneNumberId': 'string',
'E164PhoneNumber': 'string',
'Type': 'Local'|'TollFree',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'AcquireInProgress'|'AcquireFailed'|'Unassigned'|'Assigned'|'ReleaseInProgress'|'DeleteInProgress'|'ReleaseFailed'|'DeleteFailed',
'Capabilities': {
'InboundCall': True|False,
'OutboundCall': True|False,
'InboundSMS': True|False,
'OutboundSMS': True|False,
'InboundMMS': True|False,
'OutboundMMS': True|False
},
'Associations': [
{
'Value': 'string',
'Name': 'AccountId'|'UserId'|'VoiceConnectorId'|'VoiceConnectorGroupId',
'AssociatedTimestamp': datetime(2015, 1, 1)
},
],
'CallingName': 'string',
'CallingNameStatus': 'Unassigned'|'UpdateInProgress'|'UpdateSucceeded'|'UpdateFailed',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'DeletionTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
The phone number details.
The phone number ID.
The phone number, in E.164 format.
The phone number type.
The phone number product type.
The phone number status.
The phone number capabilities.
Allows or denies inbound calling for the specified phone number.
Allows or denies outbound calling for the specified phone number.
Allows or denies inbound SMS messaging for the specified phone number.
Allows or denies outbound SMS messaging for the specified phone number.
Allows or denies inbound MMS messaging for the specified phone number.
Allows or denies outbound MMS messaging for the specified phone number.
The phone number associations.
The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
Contains the ID for the entity specified in Name.
Defines the association with an Amazon Chime account ID, user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
The timestamp of the phone number association, in ISO 8601 format.
The outbound calling name associated with the phone number.
The outbound calling name status.
The phone number creation timestamp, in ISO 8601 format.
The updated phone number timestamp, in ISO 8601 format.
The deleted phone number timestamp, in ISO 8601 format.
Exceptions
Searches phone numbers that can be ordered.
See also: AWS API Documentation
Request Syntax
response = client.search_available_phone_numbers(
AreaCode='string',
City='string',
Country='string',
State='string',
TollFreePrefix='string',
MaxResults=123,
NextToken='string'
)
dict
Response Syntax
{
'E164PhoneNumbers': [
'string',
]
}
Response Structure
(dict) --
E164PhoneNumbers (list) --
List of phone numbers, in E.164 format.
Exceptions
Applies the specified tags to the specified Amazon Chime SDK attendee.
See also: AWS API Documentation
Request Syntax
response = client.tag_attendee(
MeetingId='string',
AttendeeId='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The Amazon Chime SDK attendee ID.
[REQUIRED]
The tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
None
Exceptions
Applies the specified tags to the specified Amazon Chime SDK meeting.
See also: AWS API Documentation
Request Syntax
response = client.tag_meeting(
MeetingId='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
None
Exceptions
Applies the specified tags to the specified Amazon Chime SDK meeting resource.
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
ResourceARN='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
The resource ARN.
[REQUIRED]
The tag key-value pairs.
Describes a tag applied to a resource.
The key of the tag.
The value of the tag.
None
Exceptions
Untags the specified tags from the specified Amazon Chime SDK attendee.
See also: AWS API Documentation
Request Syntax
response = client.untag_attendee(
MeetingId='string',
AttendeeId='string',
TagKeys=[
'string',
]
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The Amazon Chime SDK attendee ID.
[REQUIRED]
The tag keys.
None
Exceptions
Untags the specified tags from the specified Amazon Chime SDK meeting.
See also: AWS API Documentation
Request Syntax
response = client.untag_meeting(
MeetingId='string',
TagKeys=[
'string',
]
)
[REQUIRED]
The Amazon Chime SDK meeting ID.
[REQUIRED]
The tag keys.
None
Exceptions
Untags the specified tags from the specified Amazon Chime SDK meeting resource.
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
ResourceARN='string',
TagKeys=[
'string',
]
)
[REQUIRED]
The resource ARN.
[REQUIRED]
The tag keys.
None
Exceptions
Updates account details for the specified Amazon Chime account. Currently, only account name updates are supported for this action.
See also: AWS API Documentation
Request Syntax
response = client.update_account(
AccountId='string',
Name='string'
)
[REQUIRED]
The Amazon Chime account ID.
dict
Response Syntax
{
'Account': {
'AwsAccountId': 'string',
'AccountId': 'string',
'Name': 'string',
'AccountType': 'Team'|'EnterpriseDirectory'|'EnterpriseLWA'|'EnterpriseOIDC',
'CreatedTimestamp': datetime(2015, 1, 1),
'DefaultLicense': 'Basic'|'Plus'|'Pro'|'ProTrial',
'SupportedLicenses': [
'Basic'|'Plus'|'Pro'|'ProTrial',
],
'SigninDelegateGroups': [
{
'GroupName': 'string'
},
]
}
}
Response Structure
(dict) --
Account (dict) --
The updated Amazon Chime account details.
AwsAccountId (string) --
The AWS account ID.
AccountId (string) --
The Amazon Chime account ID.
Name (string) --
The Amazon Chime account name.
AccountType (string) --
The Amazon Chime account type. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
CreatedTimestamp (datetime) --
The Amazon Chime account creation timestamp, in ISO 8601 format.
DefaultLicense (string) --
The default license for the Amazon Chime account.
SupportedLicenses (list) --
Supported licenses for the Amazon Chime account.
SigninDelegateGroups (list) --
The sign-in delegate groups associated with the account.
(dict) --
An Active Directory (AD) group whose members are granted permission to act as delegates.
GroupName (string) --
The group name.
Exceptions
Updates the settings for the specified Amazon Chime account. You can update settings for remote control of shared screens, or for the dial-out option. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide .
See also: AWS API Documentation
Request Syntax
response = client.update_account_settings(
AccountId='string',
AccountSettings={
'DisableRemoteControl': True|False,
'EnableDialOut': True|False
}
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The Amazon Chime account settings to update.
Setting that stops or starts remote control of shared screens during meetings.
Setting that allows meeting participants to choose the Call me at a phone number option. For more information, see Join a Meeting without the Amazon Chime App .
dict
Response Syntax
{}
Response Structure
Exceptions
Updates the status of the specified bot, such as starting or stopping the bot from running in your Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.update_bot(
AccountId='string',
BotId='string',
Disabled=True|False
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The bot ID.
dict
Response Syntax
{
'Bot': {
'BotId': 'string',
'UserId': 'string',
'DisplayName': 'string',
'BotType': 'ChatBot',
'Disabled': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'BotEmail': 'string',
'SecurityToken': 'string'
}
}
Response Structure
(dict) --
Bot (dict) --
The updated bot details.
BotId (string) --
The bot ID.
UserId (string) --
The unique ID for the bot user.
DisplayName (string) --
The bot display name.
BotType (string) --
The bot type.
Disabled (boolean) --
When true, the bot is stopped from running in your account.
CreatedTimestamp (datetime) --
The bot creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated bot timestamp, in ISO 8601 format.
BotEmail (string) --
The bot email address.
SecurityToken (string) --
The security token used to authenticate Amazon Chime with the outgoing event endpoint.
Exceptions
Updates global settings for the administrator's AWS account, such as Amazon Chime Business Calling and Amazon Chime Voice Connector settings.
See also: AWS API Documentation
Request Syntax
response = client.update_global_settings(
BusinessCalling={
'CdrBucket': 'string'
},
VoiceConnector={
'CdrBucket': 'string'
}
)
[REQUIRED]
The Amazon Chime Business Calling settings.
The Amazon S3 bucket designated for call detail record storage.
[REQUIRED]
The Amazon Chime Voice Connector settings.
The Amazon S3 bucket designated for call detail record storage.
None
Exceptions
Updates phone number details, such as product type or calling name, for the specified phone number ID. You can update one phone number detail at a time. For example, you can update either the product type or the calling name in one action.
For toll-free numbers, you must use the Amazon Chime Voice Connector product type.
Updates to outbound calling names can take up to 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.
See also: AWS API Documentation
Request Syntax
response = client.update_phone_number(
PhoneNumberId='string',
ProductType='BusinessCalling'|'VoiceConnector',
CallingName='string'
)
[REQUIRED]
The phone number ID.
dict
Response Syntax
{
'PhoneNumber': {
'PhoneNumberId': 'string',
'E164PhoneNumber': 'string',
'Type': 'Local'|'TollFree',
'ProductType': 'BusinessCalling'|'VoiceConnector',
'Status': 'AcquireInProgress'|'AcquireFailed'|'Unassigned'|'Assigned'|'ReleaseInProgress'|'DeleteInProgress'|'ReleaseFailed'|'DeleteFailed',
'Capabilities': {
'InboundCall': True|False,
'OutboundCall': True|False,
'InboundSMS': True|False,
'OutboundSMS': True|False,
'InboundMMS': True|False,
'OutboundMMS': True|False
},
'Associations': [
{
'Value': 'string',
'Name': 'AccountId'|'UserId'|'VoiceConnectorId'|'VoiceConnectorGroupId',
'AssociatedTimestamp': datetime(2015, 1, 1)
},
],
'CallingName': 'string',
'CallingNameStatus': 'Unassigned'|'UpdateInProgress'|'UpdateSucceeded'|'UpdateFailed',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'DeletionTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
PhoneNumber (dict) --
The updated phone number details.
PhoneNumberId (string) --
The phone number ID.
E164PhoneNumber (string) --
The phone number, in E.164 format.
Type (string) --
The phone number type.
ProductType (string) --
The phone number product type.
Status (string) --
The phone number status.
Capabilities (dict) --
The phone number capabilities.
InboundCall (boolean) --
Allows or denies inbound calling for the specified phone number.
OutboundCall (boolean) --
Allows or denies outbound calling for the specified phone number.
InboundSMS (boolean) --
Allows or denies inbound SMS messaging for the specified phone number.
OutboundSMS (boolean) --
Allows or denies outbound SMS messaging for the specified phone number.
InboundMMS (boolean) --
Allows or denies inbound MMS messaging for the specified phone number.
OutboundMMS (boolean) --
Allows or denies outbound MMS messaging for the specified phone number.
Associations (list) --
The phone number associations.
(dict) --
The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
Value (string) --
Contains the ID for the entity specified in Name.
Name (string) --
Defines the association with an Amazon Chime account ID, user ID, Amazon Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.
AssociatedTimestamp (datetime) --
The timestamp of the phone number association, in ISO 8601 format.
CallingName (string) --
The outbound calling name associated with the phone number.
CallingNameStatus (string) --
The outbound calling name status.
CreatedTimestamp (datetime) --
The phone number creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated phone number timestamp, in ISO 8601 format.
DeletionTimestamp (datetime) --
The deleted phone number timestamp, in ISO 8601 format.
Exceptions
Updates the phone number settings for the administrator's AWS account, such as the default outbound calling name. You can update the default outbound calling name once every seven days. Outbound calling names can take up to 72 hours to update.
See also: AWS API Documentation
Request Syntax
response = client.update_phone_number_settings(
CallingName='string'
)
[REQUIRED]
The default outbound calling name for the account.
Exceptions
Updates the specified proxy session details, such as voice or SMS capabilities.
See also: AWS API Documentation
Request Syntax
response = client.update_proxy_session(
VoiceConnectorId='string',
ProxySessionId='string',
Capabilities=[
'Voice'|'SMS',
],
ExpiryMinutes=123
)
[REQUIRED]
The Amazon Chime voice connector ID.
[REQUIRED]
The proxy session ID.
[REQUIRED]
The proxy session capabilities.
dict
Response Syntax
{
'ProxySession': {
'VoiceConnectorId': 'string',
'ProxySessionId': 'string',
'Name': 'string',
'Status': 'Open'|'InProgress'|'Closed',
'ExpiryMinutes': 123,
'Capabilities': [
'Voice'|'SMS',
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1),
'EndedTimestamp': datetime(2015, 1, 1),
'Participants': [
{
'PhoneNumber': 'string',
'ProxyPhoneNumber': 'string'
},
],
'NumberSelectionBehavior': 'PreferSticky'|'AvoidSticky',
'GeoMatchLevel': 'Country'|'AreaCode',
'GeoMatchParams': {
'Country': 'string',
'AreaCode': 'string'
}
}
}
Response Structure
(dict) --
ProxySession (dict) --
The proxy session details.
VoiceConnectorId (string) --
The Amazon Chime voice connector ID.
ProxySessionId (string) --
The proxy session ID.
Name (string) --
The name of the proxy session.
Status (string) --
The status of the proxy session.
ExpiryMinutes (integer) --
The number of minutes allowed for the proxy session.
Capabilities (list) --
The proxy session capabilities.
CreatedTimestamp (datetime) --
The created timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated timestamp, in ISO 8601 format.
EndedTimestamp (datetime) --
The ended timestamp, in ISO 8601 format.
Participants (list) --
The proxy session participants.
(dict) --
The phone number and proxy phone number for a participant in an Amazon Chime Voice Connector proxy session.
PhoneNumber (string) --
The participant's phone number.
ProxyPhoneNumber (string) --
The participant's proxy phone number.
NumberSelectionBehavior (string) --
The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
GeoMatchLevel (string) --
The preference for matching the country or area code of the proxy phone number with that of the first participant.
GeoMatchParams (dict) --
The country and area code for the proxy phone number.
Country (string) --
The country.
AreaCode (string) --
The area code.
Exceptions
Updates room details, such as the room name, for a room in an Amazon Chime Enterprise account.
See also: AWS API Documentation
Request Syntax
response = client.update_room(
AccountId='string',
RoomId='string',
Name='string'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
dict
Response Syntax
{
'Room': {
'RoomId': 'string',
'Name': 'string',
'AccountId': 'string',
'CreatedBy': 'string',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
Room (dict) --
The room details.
RoomId (string) --
The room ID.
Name (string) --
The room name.
AccountId (string) --
The Amazon Chime account ID.
CreatedBy (string) --
The identifier of the room creator.
CreatedTimestamp (datetime) --
The room creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The room update timestamp, in ISO 8601 format.
Exceptions
Updates room membership details, such as the member role, for a room in an Amazon Chime Enterprise account. The member role designates whether the member is a chat room administrator or a general chat room member. The member role can be updated only for user IDs.
See also: AWS API Documentation
Request Syntax
response = client.update_room_membership(
AccountId='string',
RoomId='string',
MemberId='string',
Role='Administrator'|'Member'
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The room ID.
[REQUIRED]
The member ID.
dict
Response Syntax
{
'RoomMembership': {
'RoomId': 'string',
'Member': {
'MemberId': 'string',
'MemberType': 'User'|'Bot'|'Webhook',
'Email': 'string',
'FullName': 'string',
'AccountId': 'string'
},
'Role': 'Administrator'|'Member',
'InvitedBy': 'string',
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
RoomMembership (dict) --
The room membership details.
RoomId (string) --
The room ID.
Member (dict) --
The member details, such as email address, name, member ID, and member type.
MemberId (string) --
The member ID (user ID or bot ID).
MemberType (string) --
The member type.
Email (string) --
The member email address.
FullName (string) --
The member name.
AccountId (string) --
The Amazon Chime account ID.
Role (string) --
The membership role.
InvitedBy (string) --
The identifier of the user that invited the room member.
UpdatedTimestamp (datetime) --
The room membership update timestamp, in ISO 8601 format.
Exceptions
Updates user details for a specified user ID. Currently, only LicenseType updates are supported for this action.
See also: AWS API Documentation
Request Syntax
response = client.update_user(
AccountId='string',
UserId='string',
LicenseType='Basic'|'Plus'|'Pro'|'ProTrial',
UserType='PrivateUser'|'SharedDevice',
AlexaForBusinessMetadata={
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
}
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
The Alexa for Business metadata.
Starts or stops Alexa for Business.
The ARN of the room resource.
dict
Response Syntax
{
'User': {
'UserId': 'string',
'AccountId': 'string',
'PrimaryEmail': 'string',
'PrimaryProvisionedNumber': 'string',
'DisplayName': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'UserRegistrationStatus': 'Unregistered'|'Registered'|'Suspended',
'UserInvitationStatus': 'Pending'|'Accepted'|'Failed',
'RegisteredOn': datetime(2015, 1, 1),
'InvitedOn': datetime(2015, 1, 1),
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
},
'PersonalPIN': 'string'
}
}
Response Structure
(dict) --
User (dict) --
The updated user details.
UserId (string) --
The user ID.
AccountId (string) --
The Amazon Chime account ID.
PrimaryEmail (string) --
The primary email address of the user.
PrimaryProvisionedNumber (string) --
The primary phone number associated with the user.
DisplayName (string) --
The display name of the user.
LicenseType (string) --
The license type for the user.
UserType (string) --
The user type.
UserRegistrationStatus (string) --
The user registration status.
UserInvitationStatus (string) --
The user invite status.
RegisteredOn (datetime) --
Date and time when the user is registered, in ISO 8601 format.
InvitedOn (datetime) --
Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
AlexaForBusinessMetadata (dict) --
The Alexa for Business metadata.
IsAlexaForBusinessEnabled (boolean) --
Starts or stops Alexa for Business.
AlexaForBusinessRoomArn (string) --
The ARN of the room resource.
PersonalPIN (string) --
The user's personal meeting PIN.
Exceptions
Updates the settings for the specified user, such as phone number settings.
See also: AWS API Documentation
Request Syntax
response = client.update_user_settings(
AccountId='string',
UserId='string',
UserSettings={
'Telephony': {
'InboundCalling': True|False,
'OutboundCalling': True|False,
'SMS': True|False
}
}
)
[REQUIRED]
The Amazon Chime account ID.
[REQUIRED]
The user ID.
[REQUIRED]
The user settings to update.
The telephony settings associated with the user.
Allows or denies inbound calling.
Allows or denies outbound calling.
Allows or denies SMS messaging.
None
Exceptions
Updates details for the specified Amazon Chime Voice Connector.
See also: AWS API Documentation
Request Syntax
response = client.update_voice_connector(
VoiceConnectorId='string',
Name='string',
RequireEncryption=True|False
)
[REQUIRED]
The Amazon Chime Voice Connector ID.
[REQUIRED]
The name of the Amazon Chime Voice Connector.
[REQUIRED]
When enabled, requires encryption for the Amazon Chime Voice Connector.
dict
Response Syntax
{
'VoiceConnector': {
'VoiceConnectorId': 'string',
'AwsRegion': 'us-east-1'|'us-west-2',
'Name': 'string',
'OutboundHostName': 'string',
'RequireEncryption': True|False,
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
VoiceConnector (dict) --
The updated Amazon Chime Voice Connector details.
VoiceConnectorId (string) --
The Amazon Chime Voice Connector ID.
AwsRegion (string) --
The AWS Region in which the Amazon Chime Voice Connector is created. Default: us-east-1 .
Name (string) --
The name of the Amazon Chime Voice Connector.
OutboundHostName (string) --
The outbound host name for the Amazon Chime Voice Connector.
RequireEncryption (boolean) --
Designates whether encryption is required for the Amazon Chime Voice Connector.
CreatedTimestamp (datetime) --
The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
Exceptions
Updates details for the specified Amazon Chime Voice Connector group, such as the name and Amazon Chime Voice Connector priority ranking.
See also: AWS API Documentation
Request Syntax
response = client.update_voice_connector_group(
VoiceConnectorGroupId='string',
Name='string',
VoiceConnectorItems=[
{
'VoiceConnectorId': 'string',
'Priority': 123
},
]
)
[REQUIRED]
The Amazon Chime Voice Connector group ID.
[REQUIRED]
The name of the Amazon Chime Voice Connector group.
[REQUIRED]
The VoiceConnectorItems to associate with the group.
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
The Amazon Chime Voice Connector ID.
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
dict
Response Syntax
{
'VoiceConnectorGroup': {
'VoiceConnectorGroupId': 'string',
'Name': 'string',
'VoiceConnectorItems': [
{
'VoiceConnectorId': 'string',
'Priority': 123
},
],
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
VoiceConnectorGroup (dict) --
The updated Amazon Chime Voice Connector group details.
VoiceConnectorGroupId (string) --
The Amazon Chime Voice Connector group ID.
Name (string) --
The name of the Amazon Chime Voice Connector group.
VoiceConnectorItems (list) --
The Amazon Chime Voice Connectors to which to route inbound calls.
(dict) --
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
VoiceConnectorId (string) --
The Amazon Chime Voice Connector ID.
Priority (integer) --
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
CreatedTimestamp (datetime) --
The Amazon Chime Voice Connector group creation timestamp, in ISO 8601 format.
UpdatedTimestamp (datetime) --
The updated Amazon Chime Voice Connector group timestamp, in ISO 8601 format.
Exceptions
The available paginators are:
paginator = client.get_paginator('list_accounts')
Creates an iterator that will paginate through responses from Chime.Client.list_accounts().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
Name='string',
UserEmail='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'Accounts': [
{
'AwsAccountId': 'string',
'AccountId': 'string',
'Name': 'string',
'AccountType': 'Team'|'EnterpriseDirectory'|'EnterpriseLWA'|'EnterpriseOIDC',
'CreatedTimestamp': datetime(2015, 1, 1),
'DefaultLicense': 'Basic'|'Plus'|'Pro'|'ProTrial',
'SupportedLicenses': [
'Basic'|'Plus'|'Pro'|'ProTrial',
],
'SigninDelegateGroups': [
{
'GroupName': 'string'
},
]
},
],
}
Response Structure
(dict) --
Accounts (list) --
List of Amazon Chime accounts and account details.
(dict) --
The Amazon Chime account details. An AWS account can have multiple Amazon Chime accounts.
AwsAccountId (string) --
The AWS account ID.
AccountId (string) --
The Amazon Chime account ID.
Name (string) --
The Amazon Chime account name.
AccountType (string) --
The Amazon Chime account type. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide .
CreatedTimestamp (datetime) --
The Amazon Chime account creation timestamp, in ISO 8601 format.
DefaultLicense (string) --
The default license for the Amazon Chime account.
SupportedLicenses (list) --
Supported licenses for the Amazon Chime account.
SigninDelegateGroups (list) --
The sign-in delegate groups associated with the account.
(dict) --
An Active Directory (AD) group whose members are granted permission to act as delegates.
GroupName (string) --
The group name.
paginator = client.get_paginator('list_users')
Creates an iterator that will paginate through responses from Chime.Client.list_users().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
AccountId='string',
UserEmail='string',
UserType='PrivateUser'|'SharedDevice',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
The Amazon Chime account ID.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'Users': [
{
'UserId': 'string',
'AccountId': 'string',
'PrimaryEmail': 'string',
'PrimaryProvisionedNumber': 'string',
'DisplayName': 'string',
'LicenseType': 'Basic'|'Plus'|'Pro'|'ProTrial',
'UserType': 'PrivateUser'|'SharedDevice',
'UserRegistrationStatus': 'Unregistered'|'Registered'|'Suspended',
'UserInvitationStatus': 'Pending'|'Accepted'|'Failed',
'RegisteredOn': datetime(2015, 1, 1),
'InvitedOn': datetime(2015, 1, 1),
'AlexaForBusinessMetadata': {
'IsAlexaForBusinessEnabled': True|False,
'AlexaForBusinessRoomArn': 'string'
},
'PersonalPIN': 'string'
},
],
}
Response Structure
(dict) --
Users (list) --
List of users and user details.
(dict) --
The user on the Amazon Chime account.
UserId (string) --
The user ID.
AccountId (string) --
The Amazon Chime account ID.
PrimaryEmail (string) --
The primary email address of the user.
PrimaryProvisionedNumber (string) --
The primary phone number associated with the user.
DisplayName (string) --
The display name of the user.
LicenseType (string) --
The license type for the user.
UserType (string) --
The user type.
UserRegistrationStatus (string) --
The user registration status.
UserInvitationStatus (string) --
The user invite status.
RegisteredOn (datetime) --
Date and time when the user is registered, in ISO 8601 format.
InvitedOn (datetime) --
Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
AlexaForBusinessMetadata (dict) --
The Alexa for Business metadata.
IsAlexaForBusinessEnabled (boolean) --
Starts or stops Alexa for Business.
AlexaForBusinessRoomArn (string) --
The ARN of the room resource.
PersonalPIN (string) --
The user's personal meeting PIN.