#[non_exhaustive]pub struct AutomaticStatus {
pub customer_managed_encryption: Option<CustomerManagedEncryptionStatus>,
}Expand description
The replication status of a SecretVersion using automatic replication.
Only populated if the parent Secret has an automatic replication policy.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.customer_managed_encryption: Option<CustomerManagedEncryptionStatus>Output only. The customer-managed encryption status of the SecretVersion. Only populated if customer-managed encryption is used.
Implementations§
Source§impl AutomaticStatus
impl AutomaticStatus
Sourcepub fn set_customer_managed_encryption<T: Into<Option<CustomerManagedEncryptionStatus>>>(
self,
v: T,
) -> Self
pub fn set_customer_managed_encryption<T: Into<Option<CustomerManagedEncryptionStatus>>>( self, v: T, ) -> Self
Sets the value of customer_managed_encryption.
Trait Implementations§
Source§impl Clone for AutomaticStatus
impl Clone for AutomaticStatus
Source§fn clone(&self) -> AutomaticStatus
fn clone(&self) -> AutomaticStatus
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 AutomaticStatus
impl Debug for AutomaticStatus
Source§impl Default for AutomaticStatus
impl Default for AutomaticStatus
Source§fn default() -> AutomaticStatus
fn default() -> AutomaticStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomaticStatuswhere
AutomaticStatus: Default,
impl<'de> Deserialize<'de> for AutomaticStatuswhere
AutomaticStatus: Default,
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 Message for AutomaticStatus
impl Message for AutomaticStatus
Source§impl PartialEq for AutomaticStatus
impl PartialEq for AutomaticStatus
Source§impl Serialize for AutomaticStatus
impl Serialize for AutomaticStatus
impl StructuralPartialEq for AutomaticStatus
Auto Trait Implementations§
impl Freeze for AutomaticStatus
impl RefUnwindSafe for AutomaticStatus
impl Send for AutomaticStatus
impl Sync for AutomaticStatus
impl Unpin for AutomaticStatus
impl UnwindSafe for AutomaticStatus
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