Struct aws_sdk_secretsmanager::input::ListSecretsInput
source · #[non_exhaustive]pub struct ListSecretsInput { /* private fields */ }Implementations§
source§impl ListSecretsInput
impl ListSecretsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecrets, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecrets, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListSecrets>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListSecretsInput.
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.
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 sort_order(&self) -> Option<&SortOrderType>
pub fn sort_order(&self) -> Option<&SortOrderType>
Secrets are listed by CreatedDate.
Trait Implementations§
source§impl Clone for ListSecretsInput
impl Clone for ListSecretsInput
source§fn clone(&self) -> ListSecretsInput
fn clone(&self) -> ListSecretsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListSecretsInput
impl Debug for ListSecretsInput
source§impl PartialEq<ListSecretsInput> for ListSecretsInput
impl PartialEq<ListSecretsInput> for ListSecretsInput
source§fn eq(&self, other: &ListSecretsInput) -> bool
fn eq(&self, other: &ListSecretsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.