Table: aws_shield_emergency_contact - Query AWS Shield Advanced Emergency Contacts using SQL
AWS Shield Advanced is a DDoS protection service from AWS. The Emergency Contacts settings allow you to configure the phone numbers, email addresses and notes for the emergency contacts the Shield Response Team (SRT) should reach out to in case of a DDoS attack.
Table Usage Guide
The aws_shield_emergency_contact
table in Steampipe allows you to query the AWS Shield Advanced Emergency Contacts and retrieve the phone number, email address and notes for each contact. For more details about the individual fields, please refer to the AWS Shield Advanced API documentation.
Examples
Basic info
select email_address, phone_number, contact_notesfrom aws_shield_emergency_contact;
select email_address, phone_number, contact_notesfrom aws_shield_emergency_contact;
Schema for aws_shield_emergency_contact
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
account_id | text | =, !=, ~~, ~~*, !~~, !~~* | The AWS Account ID in which the resource is located. |
contact_notes | text | Additional notes regarding the contact. | |
email_address | text | The email address for the contact. | |
partition | text | The AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov). | |
phone_number | text | The phone number for the contact. | |
priority | bigint | The priority of the contact in the emergency contact list. | |
region | text | The AWS Region in which the resource is located. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- aws
You can pass the configuration to the command with the --config
argument:
steampipe_export_aws --config '<your_config>' aws_shield_emergency_contact