Struct aws_sdk_apigateway::input::GetApiKeysInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetApiKeys, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetApiKeys, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetApiKeys
>
Creates a new builder-style object to manufacture GetApiKeysInput
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
The name of queried API keys.
The identifier of a customer in AWS Marketplace or an external system, such as a developer portal.
A boolean flag to specify whether (true
) or not (false
) the result contains key values.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetApiKeysInput
impl Send for GetApiKeysInput
impl Sync for GetApiKeysInput
impl Unpin for GetApiKeysInput
impl UnwindSafe for GetApiKeysInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more