GetModelResult

data class GetModelResult(val contentType: String? = null, val description: String? = null, val modelId: String? = null, val name: String? = null, val schema: Any? = null)

Constructors

Link copied to clipboard
constructor(contentType: String? = null, description: String? = null, modelId: String? = null, name: String? = null, schema: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val contentType: String? = null

The content-type for the model, for example, "application/json".

Link copied to clipboard
val description: String? = null

The description of the model.

Link copied to clipboard
val modelId: String? = null

The model ID.

Link copied to clipboard
val name: String? = null

The name of the model.

Link copied to clipboard
val schema: Any? = null

The schema for the model. For application/json models, this should be JSON schema draft 4 model. Search the CloudFormation User Guide for AWS::ApiGatewayV2::Model for more information about the expected schema for this property.