@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)
34 lines (33 loc) • 1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type definition for AWS::MSK::VpcConnection
*/
export declare function getVpcConnection(args: GetVpcConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetVpcConnectionResult>;
export interface GetVpcConnectionArgs {
/**
* The ARN of the VPC connection.
*/
arn: string;
}
export interface GetVpcConnectionResult {
/**
* The ARN of the VPC connection.
*/
readonly arn?: string;
/**
* An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection.
*/
readonly tags?: {
[key: string]: string;
};
}
/**
* Resource Type definition for AWS::MSK::VpcConnection
*/
export declare function getVpcConnectionOutput(args: GetVpcConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVpcConnectionResult>;
export interface GetVpcConnectionOutputArgs {
/**
* The ARN of the VPC connection.
*/
arn: pulumi.Input<string>;
}