| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Glue.Types.CustomCode
Description
Synopsis
- data CustomCode = CustomCode' {}
- newCustomCode :: Text -> NonEmpty Text -> Text -> Text -> CustomCode
- customCode_outputSchemas :: Lens' CustomCode (Maybe [GlueSchema])
- customCode_name :: Lens' CustomCode Text
- customCode_inputs :: Lens' CustomCode (NonEmpty Text)
- customCode_code :: Lens' CustomCode Text
- customCode_className :: Lens' CustomCode Text
Documentation
data CustomCode Source #
Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.
See: newCustomCode smart constructor.
Constructors
| CustomCode' | |
Fields
| |
Instances
Create a value of CustomCode with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:outputSchemas:CustomCode', customCode_outputSchemas - Specifies the data schema for the custom code transform.
$sel:name:CustomCode', customCode_name - The name of the transform node.
$sel:inputs:CustomCode', customCode_inputs - The data inputs identified by their node names.
$sel:code:CustomCode', customCode_code - The custom code that is used to perform the data transformation.
$sel:className:CustomCode', customCode_className - The name defined for the custom code node class.
customCode_outputSchemas :: Lens' CustomCode (Maybe [GlueSchema]) Source #
Specifies the data schema for the custom code transform.
customCode_name :: Lens' CustomCode Text Source #
The name of the transform node.
customCode_inputs :: Lens' CustomCode (NonEmpty Text) Source #
The data inputs identified by their node names.
customCode_code :: Lens' CustomCode Text Source #
The custom code that is used to perform the data transformation.
customCode_className :: Lens' CustomCode Text Source #
The name defined for the custom code node class.