#[non_exhaustive]pub struct ListSecretVersionIdsInput {
pub secret_id: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub include_deprecated: Option<bool>,
}
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.secret_id: Option<String>
The ARN or name of the secret whose versions you want to list.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN.
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 ListSecretVersionIds
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 ListSecretVersionIds
again with this value.
include_deprecated: Option<bool>
Specifies whether to include versions of secrets that don't have any staging labels attached to them. Versions without staging labels are considered deprecated and are subject to deletion by Secrets Manager.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecretVersionIds, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecretVersionIds, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListSecretVersionIds
>
Creates a new builder-style object to manufacture ListSecretVersionIdsInput
The ARN or name of the secret whose versions you want to list.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN.
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 ListSecretVersionIds
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 ListSecretVersionIds
again with this value.
Specifies whether to include versions of secrets that don't have any staging labels attached to them. Versions without staging labels are considered deprecated and are subject to deletion by Secrets Manager.
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 ListSecretVersionIdsInput
impl Send for ListSecretVersionIdsInput
impl Sync for ListSecretVersionIdsInput
impl Unpin for ListSecretVersionIdsInput
impl UnwindSafe for ListSecretVersionIdsInput
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