Table: aws_servicequotas_service - Query AWS Service Quota Services using SQL
The AWS Service Quotas is a service that allows you to view and manage your quotas for AWS services from a central location. AWS services that integrate with the Service Quotas service each have a code and name.
Table Usage Guide
The aws_servicequotas_service
table in Steampipe provides you with information about services within AWS Service Quotas. With the service's service code, you can then query service quotas for that specific service, including default values,
Examples
Basic info
Explore the services supported by the Service Quotas service.
select distinct service_code, service_namefrom aws_servicequotas_service;
select distinct service_code, service_namefrom aws_servicequotas_service;
Get a service code for a a specific service
Get the service code for a specific service.
select distinct service_codefrom aws_servicequotas_servicewhere service_name = 'AWS CloudTrail';
select distinct service_codefrom aws_servicequotas_servicewhere service_name = 'AWS CloudTrail';
Schema for aws_servicequotas_service
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
account_id | text | =, !=, ~~, ~~*, !~~, !~~* | The AWS Account ID in which the resource is located. |
akas | jsonb | Array of globally unique identifier strings (also known as) for the resource. | |
partition | text | The AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov). | |
region | text | The AWS Region in which the resource is located. | |
service_code | text | Specifies the service identifier. | |
service_name | text | Specifies the service name. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | Title of the resource. |
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_servicequotas_service