Interface CfnModelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelProps.Jsii$Proxy
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.apigateway.*;
Object schema;
CfnModelProps cfnModelProps = CfnModelProps.builder()
.restApiId("restApiId")
// the properties below are optional
.contentType("contentType")
.description("description")
.name("name")
.schema(schema)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPropsstatic final classAn implementation forCfnModelProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnModelProps.Builderbuilder()default StringThe content-type for the model.default StringThe description of the model.default StringgetName()A name for the model.The string identifier of the associated RestApi.default ObjectThe schema for the model.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRestApiId
The string identifier of the associated RestApi.Returns union: either
StringorIRestApiRef- See Also:
-
getContentType
The content-type for the model.- See Also:
-
getDescription
The description of the model.- See Also:
-
getName
A name for the model.If you don't specify a name, CloudFormation generates a unique physical ID and uses that ID for the model name. For more information, see Name Type .
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
- See Also:
-
getSchema
The schema for the model.For
application/jsonmodels, this should be JSON schema draft 4 model. Do not include "* /" characters in the description of any properties because such "* /" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.- See Also:
-
builder
- Returns:
- a
CfnModelProps.BuilderofCfnModelProps
-