Struct aws_sdk_glue::model::Node
source · #[non_exhaustive]pub struct Node { /* private fields */ }Expand description
A node represents an Glue component (trigger, crawler, or job) on a workflow graph.
Implementations§
source§impl Node
impl Node
sourcepub fn unique_id(&self) -> Option<&str>
pub fn unique_id(&self) -> Option<&str>
The unique Id assigned to the node within the workflow.
sourcepub fn trigger_details(&self) -> Option<&TriggerNodeDetails>
pub fn trigger_details(&self) -> Option<&TriggerNodeDetails>
Details of the Trigger when the node represents a Trigger.
sourcepub fn job_details(&self) -> Option<&JobNodeDetails>
pub fn job_details(&self) -> Option<&JobNodeDetails>
Details of the Job when the node represents a Job.
sourcepub fn crawler_details(&self) -> Option<&CrawlerNodeDetails>
pub fn crawler_details(&self) -> Option<&CrawlerNodeDetails>
Details of the crawler when the node represents a crawler.