@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)
40 lines (39 loc) • 1.19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Definition of AWS::Deadline::MeteredProduct Resource Type
*/
export declare function getMeteredProduct(args: GetMeteredProductArgs, opts?: pulumi.InvokeOptions): Promise<GetMeteredProductResult>;
export interface GetMeteredProductArgs {
/**
* The Amazon Resource Name (ARN) of the metered product.
*/
arn: string;
}
export interface GetMeteredProductResult {
/**
* The Amazon Resource Name (ARN) of the metered product.
*/
readonly arn?: string;
/**
* The family to which the metered product belongs.
*/
readonly family?: string;
/**
* The port on which the metered product should run.
*/
readonly port?: number;
/**
* The vendor.
*/
readonly vendor?: string;
}
/**
* Definition of AWS::Deadline::MeteredProduct Resource Type
*/
export declare function getMeteredProductOutput(args: GetMeteredProductOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMeteredProductResult>;
export interface GetMeteredProductOutputArgs {
/**
* The Amazon Resource Name (ARN) of the metered product.
*/
arn: pulumi.Input<string>;
}