@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)
58 lines (57 loc) • 1.71 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::DevOpsAgent::AgentSpace
*/
export declare function getAgentSpace(args: GetAgentSpaceArgs, opts?: pulumi.InvokeOptions): Promise<GetAgentSpaceResult>;
export interface GetAgentSpaceArgs {
/**
* The unique identifier of the AgentSpace
*/
agentSpaceId: string;
}
export interface GetAgentSpaceResult {
/**
* The unique identifier of the AgentSpace
*/
readonly agentSpaceId?: string;
/**
* The Amazon Resource Name (ARN) of the AgentSpace.
*/
readonly arn?: string;
/**
* The timestamp when the resource was created.
*/
readonly createdAt?: string;
/**
* The description of the AgentSpace.
*/
readonly description?: string;
/**
* The locale for the AgentSpace, which determines the language used in agent responses.
*/
readonly locale?: string;
/**
* The name of the AgentSpace.
*/
readonly name?: string;
readonly operatorApp?: outputs.devopsagent.AgentSpaceOperatorApp;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
/**
* The timestamp when the resource was last updated.
*/
readonly updatedAt?: string;
}
/**
* Resource Type definition for AWS::DevOpsAgent::AgentSpace
*/
export declare function getAgentSpaceOutput(args: GetAgentSpaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAgentSpaceResult>;
export interface GetAgentSpaceOutputArgs {
/**
* The unique identifier of the AgentSpace
*/
agentSpaceId: pulumi.Input<string>;
}