[−][src]Struct rusoto_apigateway::PutRestApiRequest
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 2MB.
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 PartialEq<PutRestApiRequest> for PutRestApiRequest[src]
fn eq(&self, other: &PutRestApiRequest) -> bool[src]
fn ne(&self, other: &PutRestApiRequest) -> bool[src]
impl Default for PutRestApiRequest[src]
fn default() -> PutRestApiRequest[src]
impl Clone for PutRestApiRequest[src]
fn clone(&self) -> PutRestApiRequest[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for PutRestApiRequest[src]
impl Serialize for PutRestApiRequest[src]
Auto Trait Implementations
impl Send for PutRestApiRequest
impl Sync for PutRestApiRequest
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self