#[non_exhaustive]pub struct BatchGetSecretValueOutput {
pub secret_values: Option<Vec<SecretValueEntry>>,
pub next_token: Option<String>,
pub errors: Option<Vec<ApiErrorType>>,
/* private fields */
}
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_values: Option<Vec<SecretValueEntry>>
A list of secret values.
next_token: Option<String>
Secrets Manager includes this value if there's more output available than what is included in the current response. This can occur even when the response includes no values at all, such as when you ask for a filtered view of a long list. To get the next results, call BatchGetSecretValue
again with this value.
errors: Option<Vec<ApiErrorType>>
A list of errors Secrets Manager encountered while attempting to retrieve individual secrets.
Implementations§
Source§impl BatchGetSecretValueOutput
impl BatchGetSecretValueOutput
Sourcepub fn secret_values(&self) -> &[SecretValueEntry]
pub fn secret_values(&self) -> &[SecretValueEntry]
A list of secret values.
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_values.is_none()
.
Sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Secrets Manager includes this value if there's more output available than what is included in the current response. This can occur even when the response includes no values at all, such as when you ask for a filtered view of a long list. To get the next results, call BatchGetSecretValue
again with this value.
Sourcepub fn errors(&self) -> &[ApiErrorType]
pub fn errors(&self) -> &[ApiErrorType]
A list of errors Secrets Manager encountered while attempting to retrieve individual secrets.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .errors.is_none()
.
Source§impl BatchGetSecretValueOutput
impl BatchGetSecretValueOutput
Sourcepub fn builder() -> BatchGetSecretValueOutputBuilder
pub fn builder() -> BatchGetSecretValueOutputBuilder
Creates a new builder-style object to manufacture BatchGetSecretValueOutput
.
Trait Implementations§
Source§impl Clone for BatchGetSecretValueOutput
impl Clone for BatchGetSecretValueOutput
Source§fn clone(&self) -> BatchGetSecretValueOutput
fn clone(&self) -> BatchGetSecretValueOutput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for BatchGetSecretValueOutput
impl Debug for BatchGetSecretValueOutput
Source§impl RequestId for BatchGetSecretValueOutput
impl RequestId for BatchGetSecretValueOutput
Source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for BatchGetSecretValueOutput
Auto Trait Implementations§
impl Freeze for BatchGetSecretValueOutput
impl RefUnwindSafe for BatchGetSecretValueOutput
impl Send for BatchGetSecretValueOutput
impl Sync for BatchGetSecretValueOutput
impl Unpin for BatchGetSecretValueOutput
impl UnwindSafe for BatchGetSecretValueOutput
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
)