#[non_exhaustive]pub struct ListSecretsOutput {
pub secret_list: Option<Vec<SecretListEntry>>,
pub next_token: Option<String>,
/* 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_list: Option<Vec<SecretListEntry>>
A list of the secrets in the account.
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 ListSecrets
again with this value.
Implementations§
source§impl ListSecretsOutput
impl ListSecretsOutput
sourcepub fn secret_list(&self) -> &[SecretListEntry]
pub fn secret_list(&self) -> &[SecretListEntry]
A list of the secrets in the account.
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_list.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 ListSecrets
again with this value.
source§impl ListSecretsOutput
impl ListSecretsOutput
sourcepub fn builder() -> ListSecretsOutputBuilder
pub fn builder() -> ListSecretsOutputBuilder
Creates a new builder-style object to manufacture ListSecretsOutput
.
Trait Implementations§
source§impl Clone for ListSecretsOutput
impl Clone for ListSecretsOutput
source§fn clone(&self) -> ListSecretsOutput
fn clone(&self) -> ListSecretsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSecretsOutput
impl Debug for ListSecretsOutput
source§impl PartialEq for ListSecretsOutput
impl PartialEq for ListSecretsOutput
source§impl RequestId for ListSecretsOutput
impl RequestId for ListSecretsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ListSecretsOutput
Auto Trait Implementations§
impl Freeze for ListSecretsOutput
impl RefUnwindSafe for ListSecretsOutput
impl Send for ListSecretsOutput
impl Sync for ListSecretsOutput
impl Unpin for ListSecretsOutput
impl UnwindSafe for ListSecretsOutput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)