Interface CfnModelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.218Z")
@Stability(Stable)
public interface CfnModelProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnModel.
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.apigatewayv2.*;
Object schema;
CfnModelProps cfnModelProps = CfnModelProps.builder()
.apiId("apiId")
.name("name")
.schema(schema)
// the properties below are optional
.contentType("contentType")
.description("description")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPropsstatic final classAn implementation forCfnModelProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The API identifier. -
getName
The name of the model. -
getSchema
The schema for the model.For application/json models, this should be JSON schema draft 4 model.
-
getContentType
The content-type for the model, for example, "application/json". -
getDescription
The description of the model. -
builder
- Returns:
- a
CfnModelProps.BuilderofCfnModelProps
-