[][src]Struct rusoto_apigateway::PutRestApiRequest

pub struct PutRestApiRequest {
    pub body: Bytes,
    pub fail_on_warnings: Option<bool>,
    pub mode: Option<String>,
    pub parameters: Option<HashMap<String, String>>,
    pub rest_api_id: String,
}

A PUT request to update an existing API, with external API definitions specified as the request body.

Fields

body: Bytes

[Required] The PUT request body containing external API definitions. Currently, only OpenAPI definition JSON/YAML files are supported. The maximum size of the API definition file is 6MB.

fail_on_warnings: Option<bool>

A query parameter to indicate whether to rollback the API update (true) or not (false) when a warning is encountered. The default value is false.

mode: Option<String>

The mode query parameter to specify the update mode. Valid values are "merge" and "overwrite". By default, the update mode is "merge".

parameters: Option<HashMap<String, String>>

Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ignore=documentation as a parameters value, as in the AWS CLI command of aws apigateway import-rest-api --parameters ignore=documentation --body 'file:///path/to/imported-api-body.json'.

rest_api_id: String

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Clone for PutRestApiRequest[src]

impl Debug for PutRestApiRequest[src]

impl Default for PutRestApiRequest[src]

impl PartialEq<PutRestApiRequest> for PutRestApiRequest[src]

impl Serialize for PutRestApiRequest[src]

impl StructuralPartialEq for PutRestApiRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.