#[non_exhaustive]
pub struct CodeGenConfigurationNode { /* private fields */ }
Expand description

CodeGenConfigurationNode enumerates all valid Node types. One and only one of its member variables can be populated.

Implementations

Specifies a connector to an Amazon Athena data source.

Specifies a connector to a JDBC data source.

Specifies a connector to an Apache Spark data source.

Specifies a data store in the Glue Data Catalog.

Specifies an Amazon Redshift data store.

Specifies an Amazon S3 data store in the Glue Data Catalog.

Specifies a command-separated value (CSV) data store stored in Amazon S3.

Specifies a JSON data store stored in Amazon S3.

Specifies an Apache Parquet data store stored in Amazon S3.

Specifies a Relational database data source in the Glue Data Catalog.

Specifies a DynamoDB data source in the Glue Data Catalog.

Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.

Specifies a target that uses an Apache Spark connector.

Specifies a target that uses a Glue Data Catalog table.

Specifies a target that uses Amazon Redshift.

Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.

Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.

Specifies a data target that writes to Amazon S3.

Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.

Specifies a transform that chooses the data property keys that you want to keep.

Specifies a transform that chooses the data property keys that you want to drop.

Specifies a transform that renames a single data property key.

Specifies a transform that writes samples of the data to an Amazon S3 bucket.

Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.

Specifies a transform that splits data property keys into two DynamicFrames. The output is a collection of DynamicFrames: one with selected data property keys, and one with the remaining data property keys.

Specifies a transform that chooses one DynamicFrame from a collection of DynamicFrames. The output is the selected DynamicFrame

Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.

Specifies a transform that splits a dataset into two, based on a filter condition.

Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.

Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single DynamicFrame.

Specifies a direct Amazon Kinesis data source.

Specifies an Apache Kafka data store.

Specifies a Kinesis data source in the Glue Data Catalog.

Specifies an Apache Kafka data store in the Data Catalog.

Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.

Specifies a transform that merges a DynamicFrame with a staging DynamicFrame based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated.

Specifies a transform that combines the rows from two or more datasets into a single result.

Specifies a transform that identifies, removes or masks PII data.

Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.

Specifies a transform that removes rows of repeating data from a data set.

Specifies a data target that writes to a goverened catalog.

Specifies a data source in a goverened Data Catalog.

Specifies a Microsoft SQL server data source in the Glue Data Catalog.

Specifies a MySQL data source in the Glue Data Catalog.

Specifies an Oracle data source in the Glue Data Catalog.

Specifies a PostgresSQL data source in the Glue Data Catalog.

Specifies a target that uses Microsoft SQL.

Specifies a target that uses MySQL.

Specifies a target that uses Oracle SQL.

Specifies a target that uses Postgres SQL.

Creates a new builder-style object to manufacture CodeGenConfigurationNode.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
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