#[non_exhaustive]pub struct ListSecretVersionIdsInput { /* private fields */ }Implementations§
source§impl ListSecretVersionIdsInput
impl ListSecretVersionIdsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecretVersionIds, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSecretVersionIds, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListSecretVersionIds>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListSecretVersionIdsInput.
source§impl ListSecretVersionIdsInput
impl ListSecretVersionIdsInput
sourcepub fn secret_id(&self) -> Option<&str>
pub fn secret_id(&self) -> Option<&str>
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. See Finding a secret from a partial ARN.
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 ListSecretVersionIds 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 ListSecretVersionIds again with this value.
sourcepub fn include_deprecated(&self) -> Option<bool>
pub fn include_deprecated(&self) -> 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.
Trait Implementations§
source§impl Clone for ListSecretVersionIdsInput
impl Clone for ListSecretVersionIdsInput
source§fn clone(&self) -> ListSecretVersionIdsInput
fn clone(&self) -> ListSecretVersionIdsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSecretVersionIdsInput
impl Debug for ListSecretVersionIdsInput
source§impl PartialEq<ListSecretVersionIdsInput> for ListSecretVersionIdsInput
impl PartialEq<ListSecretVersionIdsInput> for ListSecretVersionIdsInput
source§fn eq(&self, other: &ListSecretVersionIdsInput) -> bool
fn eq(&self, other: &ListSecretVersionIdsInput) -> bool
self and other values to be equal, and is used
by ==.