Struct aws_sdk_glue::types::builders::NodeBuilder
source · #[non_exhaustive]pub struct NodeBuilder { /* private fields */ }Expand description
A builder for Node.
Implementations§
source§impl NodeBuilder
impl NodeBuilder
sourcepub fn set_type(self, input: Option<NodeType>) -> Self
pub fn set_type(self, input: Option<NodeType>) -> Self
The type of Glue component represented by the node.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the Glue component represented by the node.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the Glue component represented by the node.
sourcepub fn unique_id(self, input: impl Into<String>) -> Self
pub fn unique_id(self, input: impl Into<String>) -> Self
The unique Id assigned to the node within the workflow.
sourcepub fn set_unique_id(self, input: Option<String>) -> Self
pub fn set_unique_id(self, input: Option<String>) -> Self
The unique Id assigned to the node within the workflow.
sourcepub fn trigger_details(self, input: TriggerNodeDetails) -> Self
pub fn trigger_details(self, input: TriggerNodeDetails) -> Self
Details of the Trigger when the node represents a Trigger.
sourcepub fn set_trigger_details(self, input: Option<TriggerNodeDetails>) -> Self
pub fn set_trigger_details(self, input: Option<TriggerNodeDetails>) -> Self
Details of the Trigger when the node represents a Trigger.
sourcepub fn job_details(self, input: JobNodeDetails) -> Self
pub fn job_details(self, input: JobNodeDetails) -> Self
Details of the Job when the node represents a Job.
sourcepub fn set_job_details(self, input: Option<JobNodeDetails>) -> Self
pub fn set_job_details(self, input: Option<JobNodeDetails>) -> Self
Details of the Job when the node represents a Job.
sourcepub fn crawler_details(self, input: CrawlerNodeDetails) -> Self
pub fn crawler_details(self, input: CrawlerNodeDetails) -> Self
Details of the crawler when the node represents a crawler.
sourcepub fn set_crawler_details(self, input: Option<CrawlerNodeDetails>) -> Self
pub fn set_crawler_details(self, input: Option<CrawlerNodeDetails>) -> Self
Details of the crawler when the node represents a crawler.
Trait Implementations§
source§impl Clone for NodeBuilder
impl Clone for NodeBuilder
source§fn clone(&self) -> NodeBuilder
fn clone(&self) -> NodeBuilder
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 NodeBuilder
impl Debug for NodeBuilder
source§impl Default for NodeBuilder
impl Default for NodeBuilder
source§fn default() -> NodeBuilder
fn default() -> NodeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<NodeBuilder> for NodeBuilder
impl PartialEq<NodeBuilder> for NodeBuilder
source§fn eq(&self, other: &NodeBuilder) -> bool
fn eq(&self, other: &NodeBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NodeBuilder
Auto Trait Implementations§
impl RefUnwindSafe for NodeBuilder
impl Send for NodeBuilder
impl Sync for NodeBuilder
impl Unpin for NodeBuilder
impl UnwindSafe for NodeBuilder
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