import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::Connect::TestCase */ export declare function getTestCase(args: GetTestCaseArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTestCaseArgs { /** * The identifier of the test case. */ testCaseArn: string; } export interface GetTestCaseResult { /** * The content of the test case. */ readonly content?: string; /** * The description of the test case. */ readonly description?: string; /** * Entry point for Testcase. */ readonly entryPoint?: outputs.connect.TestCaseEntryPoint; /** * The initialization data of the test case. */ readonly initializationData?: string; /** * The identifier of the Amazon Connect instance. */ readonly instanceArn?: string; /** * Last modified region. */ readonly lastModifiedRegion?: string; /** * Last modified time. */ readonly lastModifiedTime?: number; /** * The name of the test case. */ readonly name?: string; /** * The status of the test case. */ readonly status?: enums.connect.TestCaseStatus; /** * One or more tags. */ readonly tags?: outputs.Tag[]; /** * The identifier of the test case. */ readonly testCaseArn?: string; } /** * Resource Type definition for AWS::Connect::TestCase */ export declare function getTestCaseOutput(args: GetTestCaseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTestCaseOutputArgs { /** * The identifier of the test case. */ testCaseArn: pulumi.Input; }