#[non_exhaustive]pub struct BatchGetSecretValueInput {
pub secret_id_list: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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_list: Option<Vec<String>>
The ARN or names of the secrets to retrieve. You must include Filters
or SecretIdList
, but not both.
filters: Option<Vec<Filter>>
The filters to choose which secrets to retrieve. You must include Filters
or SecretIdList
, but not both.
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 BatchGetSecretValue
again with the value from NextToken
. To use this parameter, you must also use the Filters
parameter.
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 BatchGetSecretValue
again with this value.
Implementations§
Source§impl BatchGetSecretValueInput
impl BatchGetSecretValueInput
Sourcepub fn secret_id_list(&self) -> &[String]
pub fn secret_id_list(&self) -> &[String]
The ARN or names of the secrets to retrieve. You must include Filters
or SecretIdList
, but not both.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .secret_id_list.is_none()
.
Sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[Filter]
The filters to choose which secrets to retrieve. You must include Filters
or SecretIdList
, but not both.
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 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 BatchGetSecretValue
again with the value from NextToken
. To use this parameter, you must also use the Filters
parameter.
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 BatchGetSecretValue
again with this value.
Source§impl BatchGetSecretValueInput
impl BatchGetSecretValueInput
Sourcepub fn builder() -> BatchGetSecretValueInputBuilder
pub fn builder() -> BatchGetSecretValueInputBuilder
Creates a new builder-style object to manufacture BatchGetSecretValueInput
.
Trait Implementations§
Source§impl Clone for BatchGetSecretValueInput
impl Clone for BatchGetSecretValueInput
Source§fn clone(&self) -> BatchGetSecretValueInput
fn clone(&self) -> BatchGetSecretValueInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for BatchGetSecretValueInput
impl Debug for BatchGetSecretValueInput
Source§impl PartialEq for BatchGetSecretValueInput
impl PartialEq for BatchGetSecretValueInput
impl StructuralPartialEq for BatchGetSecretValueInput
Auto Trait Implementations§
impl Freeze for BatchGetSecretValueInput
impl RefUnwindSafe for BatchGetSecretValueInput
impl Send for BatchGetSecretValueInput
impl Sync for BatchGetSecretValueInput
impl Unpin for BatchGetSecretValueInput
impl UnwindSafe for BatchGetSecretValueInput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)