Interface CfnModelMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.533Z")
@Stability(Stable)
public interface CfnModelMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnModelPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.*;
Object schema;
CfnModelMixinProps cfnModelMixinProps = CfnModelMixinProps.builder()
.apiId("apiId")
.contentType("contentType")
.description("description")
.name("name")
.schema(schema)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelMixinPropsstatic final classAn implementation forCfnModelMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnModelMixinProps.Builderbuilder()default ObjectgetApiId()The API identifier.default StringThe content-type for the model, for example, "application/json".default StringThe description of the model.default StringgetName()The name of the model.default ObjectThe schema for the model.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
- See Also:
-
getContentType
The content-type for the model, for example, "application/json".- See Also:
-
getDescription
The description of the model.- See Also:
-
getName
The name of the model.- See Also:
-
getSchema
The schema for the model.For application/json models, this should be JSON schema draft 4 model.
- See Also:
-
builder
- Returns:
- a
CfnModelMixinProps.BuilderofCfnModelMixinProps
-