import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * An example resource schema demonstrating some basic constructs and validation rules. */ export declare function getSuiteDefinition(args: GetSuiteDefinitionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetSuiteDefinitionArgs { /** * The unique identifier for the suite definition. */ suiteDefinitionId: string; } export interface GetSuiteDefinitionResult { /** * The Amazon Resource name for the suite definition. */ readonly suiteDefinitionArn?: string; /** * Gets the suite definition configuration. */ readonly suiteDefinitionConfiguration?: outputs.iotcoredeviceadvisor.SuiteDefinitionConfigurationProperties; /** * The unique identifier for the suite definition. */ readonly suiteDefinitionId?: string; /** * The suite definition version of a test suite. */ readonly suiteDefinitionVersion?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * An example resource schema demonstrating some basic constructs and validation rules. */ export declare function getSuiteDefinitionOutput(args: GetSuiteDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetSuiteDefinitionOutputArgs { /** * The unique identifier for the suite definition. */ suiteDefinitionId: pulumi.Input; }