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; 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; export interface GetDatasetOutputArgs { /** * The Amazon Resource Name (ARN) of the dataset. */ datasetArn: pulumi.Input; }