pub struct MemoryDisablePassphraseAction {
pub region_id: Option<String>,
pub passphrase: Option<String>,
}Expand description
Disable passphrase for the given region.
This action shall disable the need for passphrases on the supplied region provided the supplied passphrase matches that of the region.
Fields§
§region_id: Option<String>The memory region ID to which to apply this action.
This property shall contain the memory region ID to which to apply this action.
passphrase: Option<String>Passphrase for doing the operation.
This property shall contain the passphrase used in this action.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryDisablePassphraseAction
impl RefUnwindSafe for MemoryDisablePassphraseAction
impl Send for MemoryDisablePassphraseAction
impl Sync for MemoryDisablePassphraseAction
impl Unpin for MemoryDisablePassphraseAction
impl UnsafeUnpin for MemoryDisablePassphraseAction
impl UnwindSafe for MemoryDisablePassphraseAction
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