Struct aws_sdk_secretsmanager::input::ListSecretsInput
source ·
[−]#[non_exhaustive]pub struct ListSecretsInput {
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.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>
Lists secrets in the requested order.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecrets, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecrets, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListSecrets
>
Creates a new builder-style object to manufacture ListSecretsInput
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
.
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.
Lists secrets in the requested order.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListSecretsInput
impl Send for ListSecretsInput
impl Sync for ListSecretsInput
impl Unpin for ListSecretsInput
impl UnwindSafe for ListSecretsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more