UNPKG

@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)

35 lines (34 loc) 995 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for Activity */ export declare function getActivity(args: GetActivityArgs, opts?: pulumi.InvokeOptions): Promise<GetActivityResult>; export interface GetActivityArgs { /** * Returns the ARN of the resource. */ arn: string; } export interface GetActivityResult { /** * Returns the ARN of the resource. */ readonly arn?: string; /** * The list of tags to add to a resource. * * Tags may only contain Unicode letters, digits, white space, or these symbols: `_ . : / = + - @` . */ readonly tags?: outputs.Tag[]; } /** * Resource schema for Activity */ export declare function getActivityOutput(args: GetActivityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetActivityResult>; export interface GetActivityOutputArgs { /** * Returns the ARN of the resource. */ arn: pulumi.Input<string>; }