[][src]Struct rusoto_apigateway::ImportApiKeysRequest

pub struct ImportApiKeysRequest {
    pub body: Vec<u8>,
    pub fail_on_warnings: Option<bool>,
    pub format: String,
}

The POST request to import API keys from an external source, such as a CSV-formatted file.

Fields

The payload of the POST request to import API keys. For the payload format, see API Key File Format.

A query parameter to indicate whether to rollback ApiKey importation (true) or not (false) when error is encountered.

A query parameter to specify the input format to imported API keys. Currently, only the csv format is supported.

Trait Implementations

impl Clone for ImportApiKeysRequest
[src]

Performs copy-assignment from source. Read more

impl Default for ImportApiKeysRequest
[src]

impl PartialEq<ImportApiKeysRequest> for ImportApiKeysRequest
[src]

impl Debug for ImportApiKeysRequest
[src]

impl Serialize for ImportApiKeysRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T