Class: Aws::Glue::Types::CustomCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CustomCode
- Defined in:
- gems/aws-sdk-glue/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.
7273 7274 7275 7276 7277 7278 7279 7280 7281 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7273 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.
7273 7274 7275 7276 7277 7278 7279 7280 7281 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7273 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.
7273 7274 7275 7276 7277 7278 7279 7280 7281 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7273 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the transform node.
7273 7274 7275 7276 7277 7278 7279 7280 7281 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7273 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.
7273 7274 7275 7276 7277 7278 7279 7280 7281 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7273 class CustomCode < Struct.new( :name, :inputs, :code, :class_name, :output_schemas) SENSITIVE = [] include Aws::Structure end |