[][src]Struct rusoto_apigatewayv2::ReimportApiRequest

pub struct ReimportApiRequest {
    pub api_id: String,
    pub basepath: Option<String>,
    pub body: String,
    pub fail_on_warnings: Option<bool>,
}

Fields

api_id: String

The API identifier.

basepath: Option<String>

Specifies how to interpret the base path of the API during import. Valid values are ignore, prepend, and split. The default value is ignore. To learn more, see Set the OpenAPI basePath Property. Supported only for HTTP APIs.

body: String

The OpenAPI definition. Supported only for HTTP APIs.

fail_on_warnings: Option<bool>

Specifies whether to rollback the API creation when a warning is encountered. By default, API creation continues if a warning is encountered.

Trait Implementations

impl Clone for ReimportApiRequest[src]

impl Debug for ReimportApiRequest[src]

impl Default for ReimportApiRequest[src]

impl PartialEq<ReimportApiRequest> for ReimportApiRequest[src]

impl Serialize for ReimportApiRequest[src]

impl StructuralPartialEq for ReimportApiRequest[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.