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)

36 lines (35 loc) 1.42 kB
import * as pulumi from "@pulumi/pulumi"; /** * Test and Publish a resource that has been registered in the CloudFormation Registry. */ export declare function getPublicTypeVersion(args: GetPublicTypeVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetPublicTypeVersionResult>; export interface GetPublicTypeVersionArgs { /** * The Amazon Resource Number (ARN) assigned to the public extension upon publication */ publicTypeArn: string; } export interface GetPublicTypeVersionResult { /** * The Amazon Resource Number (ARN) assigned to the public extension upon publication */ readonly publicTypeArn?: string; /** * The reserved publisher id for this type, or the publisher id assigned by CloudFormation for publishing in this region. */ readonly publisherId?: string; /** * The Amazon Resource Number (ARN) of the extension with the versionId. */ readonly typeVersionArn?: string; } /** * Test and Publish a resource that has been registered in the CloudFormation Registry. */ export declare function getPublicTypeVersionOutput(args: GetPublicTypeVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPublicTypeVersionResult>; export interface GetPublicTypeVersionOutputArgs { /** * The Amazon Resource Number (ARN) assigned to the public extension upon publication */ publicTypeArn: pulumi.Input<string>; }