@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
28 lines (27 loc) • 802 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource schema for AWS::Athena::NamedQuery
*/
export declare function getNamedQuery(args: GetNamedQueryArgs, opts?: pulumi.InvokeOptions): Promise<GetNamedQueryResult>;
export interface GetNamedQueryArgs {
/**
* The unique ID of the query.
*/
namedQueryId: string;
}
export interface GetNamedQueryResult {
/**
* The unique ID of the query.
*/
readonly namedQueryId?: string;
}
/**
* Resource schema for AWS::Athena::NamedQuery
*/
export declare function getNamedQueryOutput(args: GetNamedQueryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNamedQueryResult>;
export interface GetNamedQueryOutputArgs {
/**
* The unique ID of the query.
*/
namedQueryId: pulumi.Input<string>;
}