@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)
50 lines (49 loc) • 1.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Definition of AWS::Bedrock::IntelligentPromptRouter Resource Type
*/
export declare function getIntelligentPromptRouter(args: GetIntelligentPromptRouterArgs, opts?: pulumi.InvokeOptions): Promise<GetIntelligentPromptRouterResult>;
export interface GetIntelligentPromptRouterArgs {
/**
* Arn of the Prompt Router.
*/
promptRouterArn: string;
}
export interface GetIntelligentPromptRouterResult {
/**
* Time Stamp
*/
readonly createdAt?: string;
/**
* Arn of the Prompt Router.
*/
readonly promptRouterArn?: string;
/**
* The router's status.
*/
readonly status?: enums.bedrock.IntelligentPromptRouterPromptRouterStatus;
/**
* List of Tags
*/
readonly tags?: outputs.Tag[];
/**
* The router's type.
*/
readonly type?: enums.bedrock.IntelligentPromptRouterPromptRouterType;
/**
* Time Stamp
*/
readonly updatedAt?: string;
}
/**
* Definition of AWS::Bedrock::IntelligentPromptRouter Resource Type
*/
export declare function getIntelligentPromptRouterOutput(args: GetIntelligentPromptRouterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntelligentPromptRouterResult>;
export interface GetIntelligentPromptRouterOutputArgs {
/**
* Arn of the Prompt Router.
*/
promptRouterArn: pulumi.Input<string>;
}