@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)
58 lines (57 loc) • 1.65 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Definition of AWS::BedrockAgentCore::Dataset Resource Type
*/
export declare function getDataset(args: GetDatasetArgs, opts?: pulumi.InvokeOptions): Promise<GetDatasetResult>;
export interface GetDatasetArgs {
/**
* The Amazon Resource Name (ARN) of the dataset.
*/
datasetArn: string;
}
export interface GetDatasetResult {
/**
* The timestamp when the dataset was created.
*/
readonly createdAt?: string;
/**
* The Amazon Resource Name (ARN) of the dataset.
*/
readonly datasetArn?: string;
/**
* The unique identifier of the dataset.
*/
readonly datasetId?: string;
/**
* A description of the dataset.
*/
readonly description?: string;
/**
* The number of examples in the dataset DRAFT.
*/
readonly exampleCount?: number;
/**
* The current status of the dataset.
*/
readonly status?: enums.bedrockagentcore.DatasetStatus;
/**
* A list of tags to assign to the dataset.
*/
readonly tags?: outputs.Tag[];
/**
* The timestamp when the dataset was last updated.
*/
readonly updatedAt?: string;
}
/**
* Definition of AWS::BedrockAgentCore::Dataset Resource Type
*/
export declare function getDatasetOutput(args: GetDatasetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDatasetResult>;
export interface GetDatasetOutputArgs {
/**
* The Amazon Resource Name (ARN) of the dataset.
*/
datasetArn: pulumi.Input<string>;
}