Struct aws_sdk_kms::operation::list_keys::ListKeysInput
source · #[non_exhaustive]pub struct ListKeysInput {
pub limit: Option<i32>,
pub marker: Option<String>,
}
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.limit: Option<i32>
Use this parameter to specify the maximum number of items to return. When this value is present, KMS does not return more than the specified number of items, but it might return fewer.
This value is optional. If you include a value, it must be between 1 and 1000, inclusive. If you do not include a value, it defaults to 100.
marker: Option<String>
Use this parameter in a subsequent request after you receive a response with truncated results. Set it to the value of NextMarker
from the truncated response you just received.
Implementations§
source§impl ListKeysInput
impl ListKeysInput
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
Use this parameter to specify the maximum number of items to return. When this value is present, KMS does not return more than the specified number of items, but it might return fewer.
This value is optional. If you include a value, it must be between 1 and 1000, inclusive. If you do not include a value, it defaults to 100.
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 ==
.