@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)
54 lines (53 loc) • 1.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource schema for AWS::IoTTwinMaker::Workspace
*/
export declare function getWorkspace(args: GetWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkspaceResult>;
export interface GetWorkspaceArgs {
/**
* The ID of the workspace.
*/
workspaceId: string;
}
export interface GetWorkspaceResult {
/**
* The ARN of the workspace.
*/
readonly arn?: string;
/**
* The date and time when the workspace was created.
*/
readonly creationDateTime?: string;
/**
* The description of the workspace.
*/
readonly description?: string;
/**
* The ARN of the execution role associated with the workspace.
*/
readonly role?: string;
/**
* The ARN of the S3 bucket where resources associated with the workspace are stored.
*/
readonly s3Location?: string;
/**
* A map of key-value pairs to associate with a resource.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The date and time of the current update.
*/
readonly updateDateTime?: string;
}
/**
* Resource schema for AWS::IoTTwinMaker::Workspace
*/
export declare function getWorkspaceOutput(args: GetWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkspaceResult>;
export interface GetWorkspaceOutputArgs {
/**
* The ID of the workspace.
*/
workspaceId: pulumi.Input<string>;
}