Class: Aws::Glue::Types::CustomCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CustomCode
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#class_name ⇒ String
The name defined for the custom code node class.
-
#code ⇒ String
The custom code that is used to perform the data transformation.
-
#inputs ⇒ Array<String>
The data inputs identified by their node names.
-
#name ⇒ String
The name of the transform node.
-
#output_schemas ⇒ Array<Types::GlueSchema>
Specifies the data schema for the custom code transform.
Instance Attribute Details
#class_name ⇒ String
The name defined for the custom code node class.
6539 6540 6541 6542 6543 6544 6545 6546 6547 |
# File 'lib/aws-sdk-glue/types.rb', line 6539 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#code ⇒ String
The custom code that is used to perform the data transformation.
6539 6540 6541 6542 6543 6544 6545 6546 6547 |
# File 'lib/aws-sdk-glue/types.rb', line 6539 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#inputs ⇒ Array<String>
The data inputs identified by their node names.
6539 6540 6541 6542 6543 6544 6545 6546 6547 |
# File 'lib/aws-sdk-glue/types.rb', line 6539 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the transform node.
6539 6540 6541 6542 6543 6544 6545 6546 6547 |
# File 'lib/aws-sdk-glue/types.rb', line 6539 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#output_schemas ⇒ Array<Types::GlueSchema>
Specifies the data schema for the custom code transform.
6539 6540 6541 6542 6543 6544 6545 6546 6547 |
# File 'lib/aws-sdk-glue/types.rb', line 6539 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |