Struct cfn::aws::apigateway::ModelProperties [] [src]

pub struct ModelProperties {
    pub content_type: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub name: Option<Value<String>>,
    pub rest_api_id: Value<String>,
    pub schema: Option<Value<Value>>,
}

Properties for the Model resource.

Fields

Property ContentType.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RestApiId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Schema.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for ModelProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ModelProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for ModelProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ModelProperties> for Model
[src]

[src]

Performs the conversion.

Auto Trait Implementations