Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StoredQuery

import type { StoredQuery } from "https://aws-api.deno.dev/v0.4/services/configservice.ts?docs=full";

Provides the details of a stored query.

interface StoredQuery {
Description?: string | null;
Expression?: string | null;
QueryArn?: string | null;
QueryId?: string | null;
QueryName: string;
}

§Properties

§
Description?: string | null
[src]

A unique description for the query.

§
Expression?: string | null
[src]

The expression of the query. For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.

§
QueryArn?: string | null
[src]

Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.

§
QueryId?: string | null
[src]

The ID of the query.

§
QueryName: string
[src]

The name of the query.