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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.RequestModelPropertystatic final classAn implementation forCfnFunction.RequestModelProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getModel()default ObjectReturns union: eitherBooleanorIResolvabledefault ObjectReturns union: eitherBooleanorIResolvabledefault ObjectReturns union: eitherBooleanorIResolvableMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModel
- See Also:
-
getRequired
Returns union: eitherBooleanorIResolvable- See Also:
-
getValidateBody
Returns union: eitherBooleanorIResolvable- See Also:
-
getValidateParameters
Returns union: eitherBooleanorIResolvable- See Also:
-
builder
-