import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::BedrockAgentCore::OnlineEvaluationConfig - Creates an online evaluation configuration for continuous monitoring of agent performance. */ export declare class OnlineEvaluationConfig extends pulumi.CustomResource { /** * Get an existing OnlineEvaluationConfig resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): OnlineEvaluationConfig; /** * Returns true if the given object is an instance of OnlineEvaluationConfig. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is OnlineEvaluationConfig; /** * The timestamp when the online evaluation configuration was created. */ readonly createdAt: pulumi.Output; /** * The data source configuration that specifies CloudWatch log groups and service names to monitor. */ readonly dataSourceConfig: pulumi.Output; /** * The description of the online evaluation configuration. */ readonly description: pulumi.Output; /** * The Amazon Resource Name (ARN) of the IAM role that grants permissions for evaluation. */ readonly evaluationExecutionRoleArn: pulumi.Output; /** * The list of evaluators to apply during online evaluation. */ readonly evaluators: pulumi.Output; /** * The execution status indicating whether the online evaluation is currently running. */ readonly executionStatus: pulumi.Output; /** * The Amazon Resource Name (ARN) of the online evaluation configuration. */ readonly onlineEvaluationConfigArn: pulumi.Output; /** * The unique identifier of the online evaluation configuration. */ readonly onlineEvaluationConfigId: pulumi.Output; /** * The name of the online evaluation configuration. Must be unique within your account. */ readonly onlineEvaluationConfigName: pulumi.Output; /** * The configuration that specifies where evaluation results should be written. */ readonly outputConfig: pulumi.Output; /** * The evaluation rule that defines sampling configuration, filters, and session detection settings. */ readonly rule: pulumi.Output; /** * The status of the online evaluation configuration. */ readonly status: pulumi.Output; /** * A list of tags to assign to the online evaluation configuration. */ readonly tags: pulumi.Output; /** * The timestamp when the online evaluation configuration was last updated. */ readonly updatedAt: pulumi.Output; /** * Create a OnlineEvaluationConfig resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: OnlineEvaluationConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a OnlineEvaluationConfig resource. */ export interface OnlineEvaluationConfigArgs { /** * The data source configuration that specifies CloudWatch log groups and service names to monitor. */ dataSourceConfig: pulumi.Input; /** * The description of the online evaluation configuration. */ description?: pulumi.Input; /** * The Amazon Resource Name (ARN) of the IAM role that grants permissions for evaluation. */ evaluationExecutionRoleArn: pulumi.Input; /** * The list of evaluators to apply during online evaluation. */ evaluators: pulumi.Input[]>; /** * The execution status indicating whether the online evaluation is currently running. */ executionStatus?: pulumi.Input; /** * The name of the online evaluation configuration. Must be unique within your account. */ onlineEvaluationConfigName?: pulumi.Input; /** * The evaluation rule that defines sampling configuration, filters, and session detection settings. */ rule: pulumi.Input; /** * A list of tags to assign to the online evaluation configuration. */ tags?: pulumi.Input[]>; }