pub struct GlueCrawler {
pub account_id: String,
pub name: String,
pub role: String,
pub database_name: Option<String>,
pub state: String,
pub target_summary: String,
pub schedule: Option<String>,
pub creation_time: String,
pub last_updated: String,
}Expand description
Curated row for GET /_fakecloud/glue/crawlers. One entry per
crawler across every account, mirroring what CreateCrawler
recorded plus its lifecycle state.
Fields§
§account_id: String§name: String§role: String§database_name: Option<String>§state: StringREADY / RUNNING / STOPPING.
target_summary: StringShort summary of configured targets, e.g. “2 S3, 1 JDBC”.
schedule: Option<String>§creation_time: String§last_updated: StringTrait Implementations§
Source§impl Clone for GlueCrawler
impl Clone for GlueCrawler
Source§fn clone(&self) -> GlueCrawler
fn clone(&self) -> GlueCrawler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GlueCrawler
impl Debug for GlueCrawler
Source§impl<'de> Deserialize<'de> for GlueCrawler
impl<'de> Deserialize<'de> for GlueCrawler
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
Auto Trait Implementations§
impl Freeze for GlueCrawler
impl RefUnwindSafe for GlueCrawler
impl Send for GlueCrawler
impl Sync for GlueCrawler
impl Unpin for GlueCrawler
impl UnsafeUnpin for GlueCrawler
impl UnwindSafe for GlueCrawler
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