#[non_exhaustive]pub struct ListSecretsInput {
pub include_planned_deletion: Option<bool>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<Filter>>,
pub sort_order: Option<SortOrderType>,
}
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.include_planned_deletion: Option<bool>
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren't included.
max_results: Option<i32>
The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To get the next results, call ListSecrets
again with the value from NextToken
.
next_token: Option<String>
A token that indicates where the output should continue from, if a previous call did not show all results. To get the next results, call ListSecrets
again with this value.
filters: Option<Vec<Filter>>
The filters to apply to the list of secrets.
sort_order: Option<SortOrderType>
Secrets are listed by CreatedDate
.
Implementations§
source§impl ListSecretsInput
impl ListSecretsInput
sourcepub fn include_planned_deletion(&self) -> Option<bool>
pub fn include_planned_deletion(&self) -> Option<bool>
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren't included.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To get the next results, call ListSecrets
again with the value from NextToken
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that indicates where the output should continue from, if a previous call did not show all results. To get the next results, call ListSecrets
again with this value.
sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[Filter]
The filters to apply to the list of secrets.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
sourcepub fn sort_order(&self) -> Option<&SortOrderType>
pub fn sort_order(&self) -> Option<&SortOrderType>
Secrets are listed by CreatedDate
.
source§impl ListSecretsInput
impl ListSecretsInput
sourcepub fn builder() -> ListSecretsInputBuilder
pub fn builder() -> ListSecretsInputBuilder
Creates a new builder-style object to manufacture ListSecretsInput
.
Trait Implementations§
source§impl Clone for ListSecretsInput
impl Clone for ListSecretsInput
source§fn clone(&self) -> ListSecretsInput
fn clone(&self) -> ListSecretsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSecretsInput
impl Debug for ListSecretsInput
source§impl PartialEq for ListSecretsInput
impl PartialEq for ListSecretsInput
impl StructuralPartialEq for ListSecretsInput
Auto Trait Implementations§
impl Freeze for ListSecretsInput
impl RefUnwindSafe for ListSecretsInput
impl Send for ListSecretsInput
impl Sync for ListSecretsInput
impl Unpin for ListSecretsInput
impl UnwindSafe for ListSecretsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)