Skip to main content

emergency_contact_settings

Creates, updates, deletes, gets or lists an emergency_contact_settings resource.

Overview

Nameemergency_contact_settings
TypeResource
Idaws.shield.emergency_contact_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
emergency_contact_listarrayA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_emergency_contact_settingsselectregionA 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_settingsupdateregionUpdates 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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

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;