@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)
49 lines (48 loc) • 1.28 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Creates a system that represents a logical grouping of services.
*/
export declare function getSystem(args: GetSystemArgs, opts?: pulumi.InvokeOptions): Promise<GetSystemResult>;
export interface GetSystemArgs {
/**
* The ARN of the system.
*/
systemArn: string;
}
export interface GetSystemResult {
/**
* The timestamp when the system was created.
*/
readonly createdAt?: string;
/**
* The description of the system.
*/
readonly description?: string;
/**
* The ARN of the system.
*/
readonly systemArn?: string;
/**
* The system ID.
*/
readonly systemId?: string;
/**
* Tags assigned to the system.
*/
readonly tags?: outputs.Tag[];
/**
* The timestamp when the system was last updated.
*/
readonly updatedAt?: string;
}
/**
* Creates a system that represents a logical grouping of services.
*/
export declare function getSystemOutput(args: GetSystemOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSystemResult>;
export interface GetSystemOutputArgs {
/**
* The ARN of the system.
*/
systemArn: pulumi.Input<string>;
}