Struct aws_sdk_kms::input::DescribeCustomKeyStoresInput
source · [−]#[non_exhaustive]pub struct DescribeCustomKeyStoresInput {
pub custom_key_store_id: Option<String>,
pub custom_key_store_name: Option<String>,
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.custom_key_store_id: Option<String>Gets only information about the specified custom key store. Enter the key store ID.
By default, this operation gets information about all custom key stores in the account and Region. To limit the output to a particular custom key store, you can use either the CustomKeyStoreId or CustomKeyStoreName parameter, but not both.
custom_key_store_name: Option<String>Gets only information about the specified custom key store. Enter the friendly name of the custom key store.
By default, this operation gets information about all custom key stores in the account and Region. To limit the output to a particular custom key store, you can use either the CustomKeyStoreId or CustomKeyStoreName parameter, but not both.
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.
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
sourceimpl DescribeCustomKeyStoresInput
impl DescribeCustomKeyStoresInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeCustomKeyStores, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeCustomKeyStores, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeCustomKeyStores>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeCustomKeyStoresInput
sourceimpl DescribeCustomKeyStoresInput
impl DescribeCustomKeyStoresInput
sourcepub fn custom_key_store_id(&self) -> Option<&str>
pub fn custom_key_store_id(&self) -> Option<&str>
Gets only information about the specified custom key store. Enter the key store ID.
By default, this operation gets information about all custom key stores in the account and Region. To limit the output to a particular custom key store, you can use either the CustomKeyStoreId or CustomKeyStoreName parameter, but not both.
sourcepub fn custom_key_store_name(&self) -> Option<&str>
pub fn custom_key_store_name(&self) -> Option<&str>
Gets only information about the specified custom key store. Enter the friendly name of the custom key store.
By default, this operation gets information about all custom key stores in the account and Region. To limit the output to a particular custom key store, you can use either the CustomKeyStoreId or CustomKeyStoreName parameter, but not both.
Trait Implementations
sourceimpl Clone for DescribeCustomKeyStoresInput
impl Clone for DescribeCustomKeyStoresInput
sourcefn clone(&self) -> DescribeCustomKeyStoresInput
fn clone(&self) -> DescribeCustomKeyStoresInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeCustomKeyStoresInput
impl Debug for DescribeCustomKeyStoresInput
sourceimpl PartialEq<DescribeCustomKeyStoresInput> for DescribeCustomKeyStoresInput
impl PartialEq<DescribeCustomKeyStoresInput> for DescribeCustomKeyStoresInput
sourcefn eq(&self, other: &DescribeCustomKeyStoresInput) -> bool
fn eq(&self, other: &DescribeCustomKeyStoresInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeCustomKeyStoresInput) -> bool
fn ne(&self, other: &DescribeCustomKeyStoresInput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeCustomKeyStoresInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeCustomKeyStoresInput
impl Send for DescribeCustomKeyStoresInput
impl Sync for DescribeCustomKeyStoresInput
impl Unpin for DescribeCustomKeyStoresInput
impl UnwindSafe for DescribeCustomKeyStoresInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more