website logo
HomeGithubSlack
⌘K
Overview
Quick Start
Supported Services
Running CloudGraph in EKS
Compliance
Rules Engine
AWS
Querying AWS Data
AWS Policy Packs
Billing Data
Services
Azure
Querying Azure Data
Azure Policy Packs
Services
GCP
Querying GCP Data
GCP Policy Packs
Services
K8s
Querying Kubernetes Data
Services
Docs powered by archbee 
18min

NAT Gateway

Note: if you are running CloudGraph locally you can view the interactive, automatically generated documentation in either GraphQL Playground or Altair by clicking the docs button on the right-hand side of the screen. After reading the below information we highly suggest you use one of these tools to test your queries as they will autocomplete fields for you and let you know if your queries are valid before you even submit them.

Overview

You can currently query the following attributes and connections on an AWS NAT Gateway

GraphQL
|

Filtering

Get data for a single AWS NAT Gateway that you know the ID or arn for:

GraphQL
|
GraphQL
|

Get data for all of the NAT Gateways in a certain AWS account:

GraphQL
|

Get data for all of the NAT Gateways that are NOT in a certain AWS account:

GraphQL
|

Advanced Filtering

Get data for all of the NAT Gateways that have a connected subnet:

GraphQL
|

Use multiple filter selectors, (i.e. has, and, not, or) to get data for all of the NAT Gateways that have subnet instances AND vpc instances connected to them OR that do not have networkInterface instances connected to them. Note that you can use has, and, not, or completely independently of each other:

GraphQL
|

You may also filter using a regex when filtering on a string field like, region if you want to look for a value that matches say, us- to get all NAT Gateways in us regions:

GraphQL
|

Ordering

You can order the results you get back either asc or desc depending on your preference:

GraphQL
|

Only select and return the first two NAT Gateways that are found:

GraphQL
|

Only select and return the first two NAT Gateways that are found, but offset by one so gateways two & three are returned:

GraphQL
|

Aggregation

Count the number NAT Gateways across all scanned AWS accounts:

GraphQL
|

Count the number of NAT Gateways in a single account. Note that you can apply all of the same filters that are listed above to aggregate queries:

GraphQL
|

Examples

Find all of the NAT Gateways that are in the us-east-1 region across all your accounts:

GraphQL
|

Kitchen Sink

Putting it all together; get all data for all NAT Gateways across all regions for all scanned AWS accounts in a single query. For the purposes of this example we will only get direct children of the gateways but if you want to it's easy to go from say, gateway -> vpc -> routeTable ...etc:

GraphQL
|

References

Dgraph documentation on querying

AWS NAT Gateway documentation

Updated 03 Jan 2022
Did this page help you?
Yes
No
UP NEXT
Network ACL
Docs powered by archbee 
TABLE OF CONTENTS
Overview
Filtering
Advanced Filtering
Ordering
Aggregation
Examples
Kitchen Sink
References