@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)
45 lines (44 loc) • 1.57 kB
TypeScript
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<GetSuiteDefinitionResult>;
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<GetSuiteDefinitionResult>;
export interface GetSuiteDefinitionOutputArgs {
/**
* The unique identifier for the suite definition.
*/
suiteDefinitionId: pulumi.Input<string>;
}