pub struct UpdateSecretResponse {
pub arn: Option<String>,
pub name: Option<String>,
pub version_id: Option<String>,
}
Fields§
§arn: Option<String>
The ARN of the secret that was updated.
Secrets Manager automatically adds several random characters to the name at the end of the ARN when you initially create a secret. This affects only the ARN and not the actual friendly name. This ensures that if you create a new secret with the same name as an old secret that you previously deleted, then users with access to the old secret don't automatically get access to the new secret because the ARNs are different.
name: Option<String>
The friendly name of the secret that was updated.
version_id: Option<String>
If a new version of the secret was created by this operation, then VersionId
contains the unique identifier of the new version.
Trait Implementations§
Source§impl Clone for UpdateSecretResponse
impl Clone for UpdateSecretResponse
Source§fn clone(&self) -> UpdateSecretResponse
fn clone(&self) -> UpdateSecretResponse
Returns a duplicate 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 UpdateSecretResponse
impl Debug for UpdateSecretResponse
Source§impl Default for UpdateSecretResponse
impl Default for UpdateSecretResponse
Source§fn default() -> UpdateSecretResponse
fn default() -> UpdateSecretResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSecretResponse
impl<'de> Deserialize<'de> for UpdateSecretResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateSecretResponse
impl PartialEq for UpdateSecretResponse
impl StructuralPartialEq for UpdateSecretResponse
Auto Trait Implementations§
impl Freeze for UpdateSecretResponse
impl RefUnwindSafe for UpdateSecretResponse
impl Send for UpdateSecretResponse
impl Sync for UpdateSecretResponse
impl Unpin for UpdateSecretResponse
impl UnwindSafe for UpdateSecretResponse
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
Mutably borrows from an owned value. Read more