Struct aws_sdk_apigateway::operation::get_api_keys::GetApiKeysInput
source · #[non_exhaustive]pub struct GetApiKeysInput {
pub position: Option<String>,
pub limit: Option<i32>,
pub name_query: Option<String>,
pub customer_id: Option<String>,
pub include_values: Option<bool>,
}
Expand description
A request to get information about the current ApiKeys resource.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.position: Option<String>
The current pagination position in the paged result set.
limit: Option<i32>
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
name_query: Option<String>
The name of queried API keys.
customer_id: Option<String>
The identifier of a customer in AWS Marketplace or an external system, such as a developer portal.
include_values: Option<bool>
A boolean flag to specify whether (true
) or not (false
) the result contains key values.
Implementations§
source§impl GetApiKeysInput
impl GetApiKeysInput
sourcepub fn position(&self) -> Option<&str>
pub fn position(&self) -> Option<&str>
The current pagination position in the paged result set.
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
sourcepub fn name_query(&self) -> Option<&str>
pub fn name_query(&self) -> Option<&str>
The name of queried API keys.
sourcepub fn customer_id(&self) -> Option<&str>
pub fn customer_id(&self) -> Option<&str>
The identifier of a customer in AWS Marketplace or an external system, such as a developer portal.
sourcepub fn include_values(&self) -> Option<bool>
pub fn include_values(&self) -> Option<bool>
A boolean flag to specify whether (true
) or not (false
) the result contains key values.
source§impl GetApiKeysInput
impl GetApiKeysInput
sourcepub fn builder() -> GetApiKeysInputBuilder
pub fn builder() -> GetApiKeysInputBuilder
Creates a new builder-style object to manufacture GetApiKeysInput
.
Trait Implementations§
source§impl Clone for GetApiKeysInput
impl Clone for GetApiKeysInput
source§fn clone(&self) -> GetApiKeysInput
fn clone(&self) -> GetApiKeysInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetApiKeysInput
impl Debug for GetApiKeysInput
source§impl PartialEq<GetApiKeysInput> for GetApiKeysInput
impl PartialEq<GetApiKeysInput> for GetApiKeysInput
source§fn eq(&self, other: &GetApiKeysInput) -> bool
fn eq(&self, other: &GetApiKeysInput) -> bool
self
and other
values to be equal, and is used
by ==
.