account_settings
Creates, updates, deletes, gets or lists an account_settings resource.
Overview
| Name | account_settings |
| Type | Resource |
| Id | aws.chime.account_settings |
Fields
The following fields are returned by SELECT queries:
- get_account_settings
| Name | Datatype | Description |
|---|---|---|
disable_remote_control | boolean | Setting that stops or starts remote control of shared screens during meetings. |
enable_dial_out | boolean | 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. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_account_settings | select | account_id, region | Retrieves account settings for the specified Amazon Chime account ID, such as remote control and dialout settings. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide. | |
update_account_settings | update | account_id, region, AccountSettings | 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. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Amazon Chime account ID. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_account_settings
Retrieves account settings for the specified Amazon Chime account ID, such as remote control and dialout settings. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide.
SELECT
disable_remote_control,
enable_dial_out
FROM aws.chime.account_settings
WHERE account_id = '{{ account_id }}' -- required
AND region = '{{ region }}' -- required
;
UPDATE examples
- update_account_settings
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.
UPDATE aws.chime.account_settings
SET
AccountSettings = '{{ AccountSettings }}'
WHERE
account_id = '{{ account_id }}' --required
AND region = '{{ region }}' --required
AND AccountSettings = '{{ AccountSettings }}' --required;