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

pub struct RestApiProperties {
    pub api_key_source_type: Option<Value<String>>,
    pub binary_media_types: Option<ValueList<String>>,
    pub body: Option<Value<Value>>,
    pub body_s3_location: Option<Value<S3Location>>,
    pub clone_from: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub endpoint_configuration: Option<Value<EndpointConfiguration>>,
    pub fail_on_warnings: Option<Value<bool>>,
    pub minimum_compression_size: Option<Value<u32>>,
    pub name: Option<Value<String>>,
    pub parameters: Option<ValueMap<String>>,
}

Properties for the RestApi resource.

Fields

Property ApiKeySourceType.

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

Property BinaryMediaTypes.

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

Property Body.

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

Property BodyS3Location.

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

Property CloneFrom.

Update type: Mutable. AWS CloudFormation doesn't replace 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 EndpointConfiguration.

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

Property FailOnWarnings.

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

Property MinimumCompressionSize.

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

Property Name.

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

Property Parameters.

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

Trait Implementations

impl Debug for RestApiProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for RestApiProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for RestApiProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RestApiProperties> for RestApi
[src]

[src]

Performs the conversion.

Auto Trait Implementations