Struct aws_sdk_glue::operation::create_script::CreateScriptInput
source · #[non_exhaustive]pub struct CreateScriptInput {
pub dag_nodes: Option<Vec<CodeGenNode>>,
pub dag_edges: Option<Vec<CodeGenEdge>>,
pub language: Option<Language>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dag_nodes: Option<Vec<CodeGenNode>>
A list of the nodes in the DAG.
dag_edges: Option<Vec<CodeGenEdge>>
A list of the edges in the DAG.
language: Option<Language>
The programming language of the resulting code from the DAG.
Implementations§
source§impl CreateScriptInput
impl CreateScriptInput
sourcepub fn dag_nodes(&self) -> &[CodeGenNode]
pub fn dag_nodes(&self) -> &[CodeGenNode]
A list of the nodes in the DAG.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .dag_nodes.is_none()
.
sourcepub fn dag_edges(&self) -> &[CodeGenEdge]
pub fn dag_edges(&self) -> &[CodeGenEdge]
A list of the edges in the DAG.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .dag_edges.is_none()
.
source§impl CreateScriptInput
impl CreateScriptInput
sourcepub fn builder() -> CreateScriptInputBuilder
pub fn builder() -> CreateScriptInputBuilder
Creates a new builder-style object to manufacture CreateScriptInput
.
Trait Implementations§
source§impl Clone for CreateScriptInput
impl Clone for CreateScriptInput
source§fn clone(&self) -> CreateScriptInput
fn clone(&self) -> CreateScriptInput
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 CreateScriptInput
impl Debug for CreateScriptInput
source§impl PartialEq for CreateScriptInput
impl PartialEq for CreateScriptInput
source§fn eq(&self, other: &CreateScriptInput) -> bool
fn eq(&self, other: &CreateScriptInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateScriptInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateScriptInput
impl Send for CreateScriptInput
impl Sync for CreateScriptInput
impl Unpin for CreateScriptInput
impl UnwindSafe for CreateScriptInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.