pub struct SourceObjectsConfig {
pub object_configs: Option<Vec<SourceObjectConfig>>,
pub objects_selection_type: Option<String>,
}Expand description
List of configurations for the source objects to be migrated.
This type is not used in any activity, and only used as part of another schema.
Fields§
§object_configs: Option<Vec<SourceObjectConfig>>Optional. The list of the objects to be migrated.
objects_selection_type: Option<String>Optional. The objects selection type of the migration job.
Trait Implementations§
Source§impl Clone for SourceObjectsConfig
impl Clone for SourceObjectsConfig
Source§fn clone(&self) -> SourceObjectsConfig
fn clone(&self) -> SourceObjectsConfig
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 SourceObjectsConfig
impl Debug for SourceObjectsConfig
Source§impl Default for SourceObjectsConfig
impl Default for SourceObjectsConfig
Source§fn default() -> SourceObjectsConfig
fn default() -> SourceObjectsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceObjectsConfig
impl<'de> Deserialize<'de> for SourceObjectsConfig
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 Serialize for SourceObjectsConfig
impl Serialize for SourceObjectsConfig
impl Part for SourceObjectsConfig
Auto Trait Implementations§
impl Freeze for SourceObjectsConfig
impl RefUnwindSafe for SourceObjectsConfig
impl Send for SourceObjectsConfig
impl Sync for SourceObjectsConfig
impl Unpin for SourceObjectsConfig
impl UnwindSafe for SourceObjectsConfig
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