Annotation Type CustomType.Setter


  • @Retention(RUNTIME)
    @Target(METHOD)
    public static @interface CustomType.Setter
    Annotation used by a Pulumi provider to mark a setter for a complex property type so that it can be instantiated by the Pulumi runtime.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String value
      We need to know the name of a parameter expected by the deserializer, and unfortunately Java compiler does not give this information through reflection (by default)
    • Element Detail

      • value

        java.lang.String value
        We need to know the name of a parameter expected by the deserializer, and unfortunately Java compiler does not give this information through reflection (by default)
        Returns:
        name of a parameter (defaults to the setter method name)
        Default:
        ""