#[non_exhaustive]pub struct ListKeysInput {
pub key_state: Option<KeyState>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.key_state: Option<KeyState>
The key state of the keys you want to list.
next_token: Option<String>
Use this parameter in a subsequent request after you receive a response with truncated results. Set it to the value of NextToken
from the truncated response you just received.
max_results: Option<i32>
Use this parameter to specify the maximum number of items to return. When this value is present, Amazon Web Services Payment Cryptography does not return more than the specified number of items, but it might return fewer.
Implementations§
source§impl ListKeysInput
impl ListKeysInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Use this parameter in a subsequent request after you receive a response with truncated results. Set it to the value of NextToken
from the truncated response you just received.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Use this parameter to specify the maximum number of items to return. When this value is present, Amazon Web Services Payment Cryptography does not return more than the specified number of items, but it might return fewer.
source§impl ListKeysInput
impl ListKeysInput
sourcepub fn builder() -> ListKeysInputBuilder
pub fn builder() -> ListKeysInputBuilder
Creates a new builder-style object to manufacture ListKeysInput
.
Trait Implementations§
source§impl Clone for ListKeysInput
impl Clone for ListKeysInput
source§fn clone(&self) -> ListKeysInput
fn clone(&self) -> ListKeysInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListKeysInput
impl Debug for ListKeysInput
source§impl PartialEq for ListKeysInput
impl PartialEq for ListKeysInput
source§fn eq(&self, other: &ListKeysInput) -> bool
fn eq(&self, other: &ListKeysInput) -> bool
self
and other
values to be equal, and is used
by ==
.