Struct rusoto_apigateway::RestApi [] [src]

pub struct RestApi {
    pub api_key_source: Option<String>,
    pub binary_media_types: Option<Vec<String>>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub endpoint_configuration: Option<EndpointConfiguration>,
    pub id: Option<String>,
    pub minimum_compression_size: Option<i64>,
    pub name: Option<String>,
    pub version: Option<String>,
    pub warnings: Option<Vec<String>>,
}

Represents a REST API.

Fields

The source of the API key for metring requests according to a usage plan. Valid values are

  • HEADER to read the API key from the X-API-Key header of a request.
  • AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.

The list of binary media types supported by the RestApi. By default, the RestApi supports only UTF-8-encoded text payloads.

The timestamp when the API was created.

The API's description.

The endpoint configuration of this RestApi showing the endpoint types of the API.

The API's identifier. This identifier is unique across all of your APIs in API Gateway.

A nullable integer used to enable (non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable (null) compression on an API. When compression is enabled, compression or decompression are not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.

The API's name.

A version identifier for the API.

The warning messages reported when failonwarnings is turned on during API import.

Trait Implementations

impl Default for RestApi
[src]

[src]

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

impl Debug for RestApi
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RestApi
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for RestApi

impl Sync for RestApi