Interface CfnFunction.RequestModelProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunction.RequestModelProperty.Jsii$Proxy
- Enclosing class:
CfnFunction
@Stability(Stable)
public static interface CfnFunction.RequestModelProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sam.*; RequestModelProperty requestModelProperty = RequestModelProperty.builder() .model("model") // the properties below are optional .required(false) .validateBody(false) .validateParameters(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFunction.RequestModelProperty
static final class
An implementation forCfnFunction.RequestModelProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModel
- See Also:
-
getRequired
- See Also:
-
getValidateBody
- See Also:
-
getValidateParameters
- See Also:
-
builder
-