steampipe plugin install aws

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_notes
from
aws_shield_emergency_contact;
select
email_address,
phone_number,
contact_notes
from
aws_shield_emergency_contact;

Schema for aws_shield_emergency_contact

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
account_idtext=, !=, ~~, ~~*, !~~, !~~*The AWS Account ID in which the resource is located.
contact_notestextAdditional notes regarding the contact.
email_addresstextThe email address for the contact.
partitiontextThe AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov).
phone_numbertextThe phone number for the contact.
prioritybigintThe priority of the contact in the emergency contact list.
regiontextThe AWS Region in which the resource is located.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe 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