#[non_exhaustive]pub struct ResourceDataSyncDestinationDataSharing {
pub destination_data_sharing_type: Option<String>,
}
Expand description
Synchronize Amazon Web Services Systems Manager Inventory data from multiple Amazon Web Services accounts defined in Organizations to a centralized Amazon S3 bucket. Data is synchronized to individual key prefixes in the central bucket. Each key prefix represents a different Amazon Web Services account ID.
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.destination_data_sharing_type: Option<String>
The sharing data type. Only Organization
is supported.
Implementations§
source§impl ResourceDataSyncDestinationDataSharing
impl ResourceDataSyncDestinationDataSharing
sourcepub fn destination_data_sharing_type(&self) -> Option<&str>
pub fn destination_data_sharing_type(&self) -> Option<&str>
The sharing data type. Only Organization
is supported.
source§impl ResourceDataSyncDestinationDataSharing
impl ResourceDataSyncDestinationDataSharing
sourcepub fn builder() -> ResourceDataSyncDestinationDataSharingBuilder
pub fn builder() -> ResourceDataSyncDestinationDataSharingBuilder
Creates a new builder-style object to manufacture ResourceDataSyncDestinationDataSharing
.
Trait Implementations§
source§impl Clone for ResourceDataSyncDestinationDataSharing
impl Clone for ResourceDataSyncDestinationDataSharing
source§fn clone(&self) -> ResourceDataSyncDestinationDataSharing
fn clone(&self) -> ResourceDataSyncDestinationDataSharing
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 PartialEq for ResourceDataSyncDestinationDataSharing
impl PartialEq for ResourceDataSyncDestinationDataSharing
source§fn eq(&self, other: &ResourceDataSyncDestinationDataSharing) -> bool
fn eq(&self, other: &ResourceDataSyncDestinationDataSharing) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResourceDataSyncDestinationDataSharing
Auto Trait Implementations§
impl RefUnwindSafe for ResourceDataSyncDestinationDataSharing
impl Send for ResourceDataSyncDestinationDataSharing
impl Sync for ResourceDataSyncDestinationDataSharing
impl Unpin for ResourceDataSyncDestinationDataSharing
impl UnwindSafe for ResourceDataSyncDestinationDataSharing
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