[][src]Struct rusoto_glue::Node

pub struct Node {
    pub crawler_details: Option<CrawlerNodeDetails>,
    pub job_details: Option<JobNodeDetails>,
    pub name: Option<String>,
    pub trigger_details: Option<TriggerNodeDetails>,
    pub type_: Option<String>,
    pub unique_id: Option<String>,
}

A node represents an AWS Glue component such as a trigger, or job, etc., that is part of a workflow.

Fields

crawler_details: Option<CrawlerNodeDetails>

Details of the crawler when the node represents a crawler.

job_details: Option<JobNodeDetails>

Details of the Job when the node represents a Job.

name: Option<String>

The name of the AWS Glue component represented by the node.

trigger_details: Option<TriggerNodeDetails>

Details of the Trigger when the node represents a Trigger.

type_: Option<String>

The type of AWS Glue component represented by the node.

unique_id: Option<String>

The unique Id assigned to the node within the workflow.

Trait Implementations

impl Clone for Node[src]

impl Debug for Node[src]

impl Default for Node[src]

impl<'de> Deserialize<'de> for Node[src]

impl PartialEq<Node> for Node[src]

impl StructuralPartialEq for Node[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.