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)

32 lines (31 loc) 871 B
import * as pulumi from "@pulumi/pulumi"; /** * Resource type definition for AWS::ServiceCatalog::TagOption */ export declare function getTagOption(args: GetTagOptionArgs, opts?: pulumi.InvokeOptions): Promise<GetTagOptionResult>; export interface GetTagOptionArgs { /** * The TagOption identifier. */ id: string; } export interface GetTagOptionResult { /** * The TagOption active state. */ readonly active?: boolean; /** * The TagOption identifier. */ readonly id?: string; } /** * Resource type definition for AWS::ServiceCatalog::TagOption */ export declare function getTagOptionOutput(args: GetTagOptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTagOptionResult>; export interface GetTagOptionOutputArgs { /** * The TagOption identifier. */ id: pulumi.Input<string>; }