get Custom Plugin
Get information on an Amazon MSK Connect custom plugin.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.mskconnect.getCustomPlugin({
name: "example-debezium-1",
});
Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.mskconnect.get_custom_plugin(name="example-debezium-1")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.MskConnect.GetCustomPlugin.Invoke(new()
{
Name = "example-debezium-1",
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/mskconnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mskconnect.LookupCustomPlugin(ctx, &mskconnect.LookupCustomPluginArgs{
Name: "example-debezium-1",
}, nil)
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.mskconnect.MskconnectFunctions;
import com.pulumi.aws.mskconnect.inputs.GetCustomPluginArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = MskconnectFunctions.getCustomPlugin(GetCustomPluginArgs.builder()
.name("example-debezium-1")
.build());
}
}
Content copied to clipboard
variables:
example:
fn::invoke:
function: aws:mskconnect:getCustomPlugin
arguments:
name: example-debezium-1
Content copied to clipboard
Return
A collection of values returned by getCustomPlugin.
Parameters
argument
A collection of arguments for invoking getCustomPlugin.
Return
A collection of values returned by getCustomPlugin.
Parameters
name
Name of the custom plugin.
tags
A map of tags assigned to the resource.
See also
suspend fun getCustomPlugin(argument: suspend GetCustomPluginPlainArgsBuilder.() -> Unit): GetCustomPluginResult
Return
A collection of values returned by getCustomPlugin.
Parameters
argument
Builder for com.pulumi.aws.mskconnect.kotlin.inputs.GetCustomPluginPlainArgs.