[][src]Struct rusoto_apigatewayv2::CreateModelRequest

pub struct CreateModelRequest {
    pub api_id: String,
    pub content_type: Option<String>,
    pub description: Option<String>,
    pub name: String,
    pub schema: String,
}

Fields

api_id: String

The API identifier.

content_type: Option<String>

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

description: Option<String>

The description of the model.

name: String

The name of the model. Must be alphanumeric.

schema: String

The schema for the model. For application/json models, this should be JSON schema draft 4 model.

Trait Implementations

impl Clone for CreateModelRequest[src]

impl Default for CreateModelRequest[src]

impl PartialEq<CreateModelRequest> for CreateModelRequest[src]

impl Debug for CreateModelRequest[src]

impl Serialize for CreateModelRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self