Struct aws_sdk_glue::model::Node [−][src]
#[non_exhaustive]pub struct Node {
pub type: Option<NodeType>,
pub name: Option<String>,
pub unique_id: Option<String>,
pub trigger_details: Option<TriggerNodeDetails>,
pub job_details: Option<JobNodeDetails>,
pub crawler_details: Option<CrawlerNodeDetails>,
}Expand description
A node represents an Glue component (trigger, crawler, or job) on a workflow graph.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.type: Option<NodeType>The type of Glue component represented by the node.
name: Option<String>The name of the Glue component represented by the node.
unique_id: Option<String>The unique Id assigned to the node within the workflow.
trigger_details: Option<TriggerNodeDetails>Details of the Trigger when the node represents a Trigger.
job_details: Option<JobNodeDetails>Details of the Job when the node represents a Job.
crawler_details: Option<CrawlerNodeDetails>Details of the crawler when the node represents a crawler.
Implementations
Details of the Trigger when the node represents a Trigger.
Details of the Job when the node represents a Job.
Details of the crawler when the node represents a crawler.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Node
impl UnwindSafe for Node
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
