Package software.amazon.jsii.api
Class SetRequest
java.lang.Object
software.amazon.jsii.api.SetRequest
Represents a "set property" jsii-runtime request.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.fasterxml.jackson.databind.JsonNodecom.fasterxml.jackson.databind.JsonNodegetValue()voidsetObjref(com.fasterxml.jackson.databind.JsonNode objref) voidsetProperty(String property) voidsetValue(com.fasterxml.jackson.databind.JsonNode value)
-
Constructor Details
-
SetRequest
public SetRequest()
-
-
Method Details
-
getObjref
public com.fasterxml.jackson.databind.JsonNode getObjref()- Returns:
- The jsii object reference.
-
setObjref
public void setObjref(com.fasterxml.jackson.databind.JsonNode objref) - Parameters:
objref- The jsii object reference.
-
getProperty
- Returns:
- The name of the property to set.
-
setProperty
- Parameters:
property- The name of the property to set.
-
getValue
public com.fasterxml.jackson.databind.JsonNode getValue()- Returns:
- The new value.
-
setValue
public void setValue(com.fasterxml.jackson.databind.JsonNode value) - Parameters:
value- The new value.
-