home / dmd

aws_lambda_functions

2 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ account_id region arn name runtime last_modified tags
1 1 123456789012 eu-west-1 arn:aws:lambda:eu-west-1:123456789012:function:example-deprecated example-deprecated python2.7   {}
2 2 123456789012 eu-west-1 arn:aws:lambda:eu-west-1:123456789012:function:example-evergreen example-evergreen not-a-real-runtime   {}

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE aws_lambda_functions (
  account_id TEXT NOT NULL,
  region TEXT NOT NULL,
  arn TEXT NOT NULL,
  name TEXT NOT NULL,
  runtime TEXT NOT NULL,
  last_modified TEXT,

  -- tags is a JSON object
  tags TEXT NOT NULL,

  UNIQUE (account_id, region, arn) ON CONFLICT REPLACE
);
Powered by Datasette · Queries took 8.459ms