Struct aws_sdk_secretsmanager::operation::list_secret_version_ids::ListSecretVersionIdsOutput
source · #[non_exhaustive]pub struct ListSecretVersionIdsOutput {
pub versions: Option<Vec<SecretVersionsListEntry>>,
pub next_token: Option<String>,
pub arn: Option<String>,
pub name: 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.versions: Option<Vec<SecretVersionsListEntry>>
A list of the versions of the secret.
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 ListSecretVersionIds
again with this value.
arn: Option<String>
The ARN of the secret.
name: Option<String>
The name of the secret.
Implementations§
source§impl ListSecretVersionIdsOutput
impl ListSecretVersionIdsOutput
sourcepub fn versions(&self) -> &[SecretVersionsListEntry]
pub fn versions(&self) -> &[SecretVersionsListEntry]
A list of the versions of the secret.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .versions.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 ListSecretVersionIds
again with this value.
source§impl ListSecretVersionIdsOutput
impl ListSecretVersionIdsOutput
sourcepub fn builder() -> ListSecretVersionIdsOutputBuilder
pub fn builder() -> ListSecretVersionIdsOutputBuilder
Creates a new builder-style object to manufacture ListSecretVersionIdsOutput
.
Trait Implementations§
source§impl Clone for ListSecretVersionIdsOutput
impl Clone for ListSecretVersionIdsOutput
source§fn clone(&self) -> ListSecretVersionIdsOutput
fn clone(&self) -> ListSecretVersionIdsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSecretVersionIdsOutput
impl Debug for ListSecretVersionIdsOutput
source§impl RequestId for ListSecretVersionIdsOutput
impl RequestId for ListSecretVersionIdsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ListSecretVersionIdsOutput
Auto Trait Implementations§
impl Freeze for ListSecretVersionIdsOutput
impl RefUnwindSafe for ListSecretVersionIdsOutput
impl Send for ListSecretVersionIdsOutput
impl Sync for ListSecretVersionIdsOutput
impl Unpin for ListSecretVersionIdsOutput
impl UnwindSafe for ListSecretVersionIdsOutput
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
)