#[non_exhaustive]pub struct SecretVersionsListEntry { /* private fields */ }Expand description
A structure that contains information about one version of a secret.
Implementations§
source§impl SecretVersionsListEntry
impl SecretVersionsListEntry
sourcepub fn version_id(&self) -> Option<&str>
pub fn version_id(&self) -> Option<&str>
The unique version identifier of this version of the secret.
sourcepub fn version_stages(&self) -> Option<&[String]>
pub fn version_stages(&self) -> Option<&[String]>
An array of staging labels that are currently associated with this version of the secret.
sourcepub fn last_accessed_date(&self) -> Option<&DateTime>
pub fn last_accessed_date(&self) -> Option<&DateTime>
The date that this version of the secret was last accessed. Note that the resolution of this field is at the date level and does not include the time.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date and time this version of the secret was created.
sourcepub fn kms_key_ids(&self) -> Option<&[String]>
pub fn kms_key_ids(&self) -> Option<&[String]>
The KMS keys used to encrypt the secret version.
source§impl SecretVersionsListEntry
impl SecretVersionsListEntry
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SecretVersionsListEntry.
Trait Implementations§
source§impl Clone for SecretVersionsListEntry
impl Clone for SecretVersionsListEntry
source§fn clone(&self) -> SecretVersionsListEntry
fn clone(&self) -> SecretVersionsListEntry
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SecretVersionsListEntry
impl Debug for SecretVersionsListEntry
source§impl PartialEq<SecretVersionsListEntry> for SecretVersionsListEntry
impl PartialEq<SecretVersionsListEntry> for SecretVersionsListEntry
source§fn eq(&self, other: &SecretVersionsListEntry) -> bool
fn eq(&self, other: &SecretVersionsListEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.