pub struct ObjectReplicationResult {
pub destination_object_replication_id: Output<String>,
pub destination_storage_account_id: Output<String>,
pub rules: Output<Vec<ObjectReplicationRule>>,
pub source_object_replication_id: Output<String>,
pub source_storage_account_id: Output<String>,
}
Fields§
§destination_object_replication_id: Output<String>
The ID of the Object Replication in the destination storage account.
destination_storage_account_id: Output<String>
The ID of the destination storage account. Changing this forces a new Storage Object Replication to be created.
rules: Output<Vec<ObjectReplicationRule>>
One or more rules
blocks as defined below.
source_object_replication_id: Output<String>
The ID of the Object Replication in the source storage account.
source_storage_account_id: Output<String>
The ID of the source storage account. Changing this forces a new Storage Object Replication to be created.
Auto Trait Implementations§
impl Freeze for ObjectReplicationResult
impl RefUnwindSafe for ObjectReplicationResult
impl Send for ObjectReplicationResult
impl Sync for ObjectReplicationResult
impl Unpin for ObjectReplicationResult
impl UnwindSafe for ObjectReplicationResult
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