@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)
38 lines (37 loc) • 1.33 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* An example resource schema demonstrating some basic constructs and validation rules.
*/
export declare function getCustomPlugin(args: GetCustomPluginArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomPluginResult>;
export interface GetCustomPluginArgs {
/**
* The Amazon Resource Name (ARN) of the custom plugin to use.
*/
customPluginArn: string;
}
export interface GetCustomPluginResult {
/**
* The Amazon Resource Name (ARN) of the custom plugin to use.
*/
readonly customPluginArn?: string;
readonly fileDescription?: outputs.kafkaconnect.CustomPluginFileDescription;
/**
* The revision of the custom plugin.
*/
readonly revision?: number;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* An example resource schema demonstrating some basic constructs and validation rules.
*/
export declare function getCustomPluginOutput(args: GetCustomPluginOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomPluginResult>;
export interface GetCustomPluginOutputArgs {
/**
* The Amazon Resource Name (ARN) of the custom plugin to use.
*/
customPluginArn: pulumi.Input<string>;
}