Struct aws_sdk_apigateway::input::ImportApiKeysInput  
source · #[non_exhaustive]pub struct ImportApiKeysInput { /* private fields */ }Expand description
The POST request to import API keys from an external source, such as a CSV-formatted file.
Implementations§
source§impl ImportApiKeysInput
 
impl ImportApiKeysInput
sourcepub async fn make_operation(
    self,
    _config: &Config
) -> Result<Operation<ImportApiKeys, AwsResponseRetryClassifier>, BuildError>
 
pub async fn make_operation(
    self,
    _config: &Config
) -> Result<Operation<ImportApiKeys, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ImportApiKeys>
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImportApiKeysInput.
source§impl ImportApiKeysInput
 
impl ImportApiKeysInput
sourcepub fn body(&self) -> Option<&Blob>
 
pub fn body(&self) -> Option<&Blob>
The payload of the POST request to import API keys. For the payload format, see API Key File Format.
sourcepub fn format(&self) -> Option<&ApiKeysFormat>
 
pub fn format(&self) -> Option<&ApiKeysFormat>
A query parameter to specify the input format to imported API keys. Currently, only the csv format is supported.
sourcepub fn fail_on_warnings(&self) -> bool
 
pub fn fail_on_warnings(&self) -> bool
A query parameter to indicate whether to rollback ApiKey importation (true) or not (false) when error is encountered.
Trait Implementations§
source§impl Clone for ImportApiKeysInput
 
impl Clone for ImportApiKeysInput
source§fn clone(&self) -> ImportApiKeysInput
 
fn clone(&self) -> ImportApiKeysInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for ImportApiKeysInput
 
impl Debug for ImportApiKeysInput
source§impl PartialEq<ImportApiKeysInput> for ImportApiKeysInput
 
impl PartialEq<ImportApiKeysInput> for ImportApiKeysInput
source§fn eq(&self, other: &ImportApiKeysInput) -> bool
 
fn eq(&self, other: &ImportApiKeysInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.