@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)
32 lines (31 loc) • 924 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Definition of AWS::Wisdom::Assistant Resource Type
*/
export declare function getAssistant(args: GetAssistantArgs, opts?: pulumi.InvokeOptions): Promise<GetAssistantResult>;
export interface GetAssistantArgs {
/**
* The ID of the Wisdom assistant.
*/
assistantId: string;
}
export interface GetAssistantResult {
/**
* The Amazon Resource Name (ARN) of the assistant.
*/
readonly assistantArn?: string;
/**
* The ID of the Wisdom assistant.
*/
readonly assistantId?: string;
}
/**
* Definition of AWS::Wisdom::Assistant Resource Type
*/
export declare function getAssistantOutput(args: GetAssistantOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAssistantResult>;
export interface GetAssistantOutputArgs {
/**
* The ID of the Wisdom assistant.
*/
assistantId: pulumi.Input<string>;
}