Struct aws_sdk_glue::types::CrawlerTargets
source · #[non_exhaustive]pub struct CrawlerTargets {
pub s3_targets: Option<Vec<S3Target>>,
pub jdbc_targets: Option<Vec<JdbcTarget>>,
pub mongo_db_targets: Option<Vec<MongoDbTarget>>,
pub dynamo_db_targets: Option<Vec<DynamoDbTarget>>,
pub catalog_targets: Option<Vec<CatalogTarget>>,
pub delta_targets: Option<Vec<DeltaTarget>>,
pub iceberg_targets: Option<Vec<IcebergTarget>>,
pub hudi_targets: Option<Vec<HudiTarget>>,
}Expand description
Specifies data stores to crawl.
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.s3_targets: Option<Vec<S3Target>>Specifies Amazon Simple Storage Service (Amazon S3) targets.
jdbc_targets: Option<Vec<JdbcTarget>>Specifies JDBC targets.
mongo_db_targets: Option<Vec<MongoDbTarget>>Specifies Amazon DocumentDB or MongoDB targets.
dynamo_db_targets: Option<Vec<DynamoDbTarget>>Specifies Amazon DynamoDB targets.
catalog_targets: Option<Vec<CatalogTarget>>Specifies Glue Data Catalog targets.
delta_targets: Option<Vec<DeltaTarget>>Specifies Delta data store targets.
iceberg_targets: Option<Vec<IcebergTarget>>Specifies Apache Iceberg data store targets.
hudi_targets: Option<Vec<HudiTarget>>Specifies Apache Hudi data store targets.
Implementations§
source§impl CrawlerTargets
impl CrawlerTargets
sourcepub fn s3_targets(&self) -> Option<&[S3Target]>
pub fn s3_targets(&self) -> Option<&[S3Target]>
Specifies Amazon Simple Storage Service (Amazon S3) targets.
sourcepub fn jdbc_targets(&self) -> Option<&[JdbcTarget]>
pub fn jdbc_targets(&self) -> Option<&[JdbcTarget]>
Specifies JDBC targets.
sourcepub fn mongo_db_targets(&self) -> Option<&[MongoDbTarget]>
pub fn mongo_db_targets(&self) -> Option<&[MongoDbTarget]>
Specifies Amazon DocumentDB or MongoDB targets.
sourcepub fn dynamo_db_targets(&self) -> Option<&[DynamoDbTarget]>
pub fn dynamo_db_targets(&self) -> Option<&[DynamoDbTarget]>
Specifies Amazon DynamoDB targets.
sourcepub fn catalog_targets(&self) -> Option<&[CatalogTarget]>
pub fn catalog_targets(&self) -> Option<&[CatalogTarget]>
Specifies Glue Data Catalog targets.
sourcepub fn delta_targets(&self) -> Option<&[DeltaTarget]>
pub fn delta_targets(&self) -> Option<&[DeltaTarget]>
Specifies Delta data store targets.
sourcepub fn iceberg_targets(&self) -> Option<&[IcebergTarget]>
pub fn iceberg_targets(&self) -> Option<&[IcebergTarget]>
Specifies Apache Iceberg data store targets.
sourcepub fn hudi_targets(&self) -> Option<&[HudiTarget]>
pub fn hudi_targets(&self) -> Option<&[HudiTarget]>
Specifies Apache Hudi data store targets.
source§impl CrawlerTargets
impl CrawlerTargets
sourcepub fn builder() -> CrawlerTargetsBuilder
pub fn builder() -> CrawlerTargetsBuilder
Creates a new builder-style object to manufacture CrawlerTargets.
Trait Implementations§
source§impl Clone for CrawlerTargets
impl Clone for CrawlerTargets
source§fn clone(&self) -> CrawlerTargets
fn clone(&self) -> CrawlerTargets
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 CrawlerTargets
impl Debug for CrawlerTargets
source§impl PartialEq<CrawlerTargets> for CrawlerTargets
impl PartialEq<CrawlerTargets> for CrawlerTargets
source§fn eq(&self, other: &CrawlerTargets) -> bool
fn eq(&self, other: &CrawlerTargets) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CrawlerTargets
Auto Trait Implementations§
impl RefUnwindSafe for CrawlerTargets
impl Send for CrawlerTargets
impl Sync for CrawlerTargets
impl Unpin for CrawlerTargets
impl UnwindSafe for CrawlerTargets
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