emergency_contact_settings
Creates, updates, deletes, gets or lists an emergency_contact_settings resource.
Overview
| Name | emergency_contact_settings |
| Type | Resource |
| Id | aws.shield.emergency_contact_settings |
Fields
The following fields are returned by SELECT queries:
- describe_emergency_contact_settings
| Name | Datatype | Description |
|---|---|---|
emergency_contact_list | array | A list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_emergency_contact_settings | select | region | A list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support. | |
update_emergency_contact_settings | update | region | Updates the details of the list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_emergency_contact_settings
A list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support.
SELECT
emergency_contact_list
FROM aws.shield.emergency_contact_settings
WHERE region = '{{ region }}' -- required
;
UPDATE examples
- update_emergency_contact_settings
Updates the details of the list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support.
UPDATE aws.shield.emergency_contact_settings
SET
EmergencyContactList = '{{ EmergencyContactList }}'
WHERE
region = '{{ region }}' --required;