CreateModelRequest

public struct CreateModelRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • [Required] The content-type for the model.

    Declaration

    Swift

    public let contentType: String
  • The description of the model.

    Declaration

    Swift

    public let description: String?
  • [Required] The name of the model. Must be alphanumeric.

    Declaration

    Swift

    public let name: String
  • [Required] The RestApi identifier under which the Model will be created.

    Declaration

    Swift

    public let restApiId: String
  • The schema for the model. For application/json models, this should be JSON schema draft 4 model.

    Declaration

    Swift

    public let schema: String?
  • Undocumented

    Declaration

    Swift

    public init(contentType: String, description: String? = nil, name: String, restApiId: String, schema: String? = nil)