Class CustomPlugin


  • public class CustomPlugin
    extends com.pulumi.resources.CustomResource
    Provides an Amazon MSK Connect Custom Plugin Resource. ## Example Usage ### Basic configuration <!--Start PulumiCodeChooser -->
     
     package generated_program;
     
     import com.pulumi.Context;
     import com.pulumi.Pulumi;
     import com.pulumi.core.Output;
     import com.pulumi.aws.s3.BucketV2;
     import com.pulumi.aws.s3.BucketV2Args;
     import com.pulumi.aws.s3.BucketObjectv2;
     import com.pulumi.aws.s3.BucketObjectv2Args;
     import com.pulumi.aws.mskconnect.CustomPlugin;
     import com.pulumi.aws.mskconnect.CustomPluginArgs;
     import com.pulumi.aws.mskconnect.inputs.CustomPluginLocationArgs;
     import com.pulumi.aws.mskconnect.inputs.CustomPluginLocationS3Args;
     import com.pulumi.asset.FileAsset;
     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) {
             var example = new BucketV2("example", BucketV2Args.builder()        
                 .bucket("example")
                 .build());
     
             var exampleBucketObjectv2 = new BucketObjectv2("exampleBucketObjectv2", BucketObjectv2Args.builder()        
                 .bucket(example.id())
                 .key("debezium.zip")
                 .source(new FileAsset("debezium.zip"))
                 .build());
     
             var exampleCustomPlugin = new CustomPlugin("exampleCustomPlugin", CustomPluginArgs.builder()        
                 .name("debezium-example")
                 .contentType("ZIP")
                 .location(CustomPluginLocationArgs.builder()
                     .s3(CustomPluginLocationS3Args.builder()
                         .bucketArn(example.arn())
                         .fileKey(exampleBucketObjectv2.key())
                         .build())
                     .build())
                 .build());
     
         }
     }
     
     
    <!--End PulumiCodeChooser --> ## Import Using `pulumi import`, import MSK Connect Custom Plugin using the plugin's `arn`. For example: ```sh $ pulumi import aws:mskconnect/customPlugin:CustomPlugin example 'arn:aws:kafkaconnect:eu-central-1:123456789012:custom-plugin/debezium-example/abcdefgh-1234-5678-9abc-defghijklmno-4' ```
    • Nested Class Summary

      • Nested classes/interfaces inherited from class com.pulumi.resources.CustomResource

        com.pulumi.resources.CustomResource.CustomResourceInternal
      • Nested classes/interfaces inherited from class com.pulumi.resources.Resource

        com.pulumi.resources.Resource.LazyField<T extends java.lang.Object>, com.pulumi.resources.Resource.LazyFields, com.pulumi.resources.Resource.ResourceInternal
    • Field Summary

      • Fields inherited from class com.pulumi.resources.Resource

        childResources, remote
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      com.pulumi.core.Output<java.lang.String> arn()  
      com.pulumi.core.Output<java.lang.String> contentType()  
      com.pulumi.core.Output<java.util.Optional<java.lang.String>> description()  
      static CustomPlugin get​(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, CustomPluginState state, com.pulumi.resources.CustomResourceOptions options)
      Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
      com.pulumi.core.Output<java.lang.Integer> latestRevision()  
      com.pulumi.core.Output<CustomPluginLocation> location()  
      com.pulumi.core.Output<java.lang.String> name()  
      com.pulumi.core.Output<java.lang.String> state()  
      • Methods inherited from class com.pulumi.resources.CustomResource

        getId, id, idFuture
      • Methods inherited from class com.pulumi.resources.Resource

        getChildResources, getResourceName, getResourceType, getUrn, pulumiChildResources, pulumiResourceName, pulumiResourceType, urn
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CustomPlugin

        public CustomPlugin​(java.lang.String name)
        Parameters:
        name - The _unique_ name of the resulting resource.
      • CustomPlugin

        public CustomPlugin​(java.lang.String name,
                            CustomPluginArgs args)
        Parameters:
        name - The _unique_ name of the resulting resource.
        args - The arguments to use to populate this resource's properties.
      • CustomPlugin

        public CustomPlugin​(java.lang.String name,
                            CustomPluginArgs args,
                            @Nullable
                            com.pulumi.resources.CustomResourceOptions options)
        Parameters:
        name - The _unique_ name of the resulting resource.
        args - The arguments to use to populate this resource's properties.
        options - A bag of options that control this resource's behavior.
    • Method Detail

      • arn

        public com.pulumi.core.Output<java.lang.String> arn()
        Returns:
        the Amazon Resource Name (ARN) of the custom plugin.
      • contentType

        public com.pulumi.core.Output<java.lang.String> contentType()
        Returns:
        The type of the plugin file. Allowed values are `ZIP` and `JAR`.
      • description

        public com.pulumi.core.Output<java.util.Optional<java.lang.String>> description()
        Returns:
        A summary description of the custom plugin.
      • latestRevision

        public com.pulumi.core.Output<java.lang.Integer> latestRevision()
        Returns:
        an ID of the latest successfully created revision of the custom plugin.
      • location

        public com.pulumi.core.Output<CustomPluginLocation> location()
        Returns:
        Information about the location of a custom plugin. See below. The following arguments are optional:
      • name

        public com.pulumi.core.Output<java.lang.String> name()
        Returns:
        The name of the custom plugin..
      • state

        public com.pulumi.core.Output<java.lang.String> state()
        Returns:
        the state of the custom plugin.
      • get

        public static CustomPlugin get​(java.lang.String name,
                                       com.pulumi.core.Output<java.lang.String> id,
                                       @Nullable
                                       CustomPluginState state,
                                       @Nullable
                                       com.pulumi.resources.CustomResourceOptions options)
        Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
        Parameters:
        name - The _unique_ name of the resulting resource.
        id - The _unique_ provider ID of the resource to lookup.
        state -
        options - Optional settings to control the behavior of the CustomResource.