Class: Aws::Glue::Types::SelectFromCollection

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass SelectFromCollection data as a hash:

{
  name: "NodeName", # required
  inputs: ["NodeId"], # required
  index: 1, # required
}

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#indexInteger

The index for the DynamicFrame to be selected.

Returns:

  • (Integer)


21448
21449
21450
21451
21452
21453
21454
# File 'lib/aws-sdk-glue/types.rb', line 21448

class SelectFromCollection < Struct.new(
  :name,
  :inputs,
  :index)
  SENSITIVE = []
  include Aws::Structure
end

#inputsArray<String>

The data inputs identified by their node names.

Returns:

  • (Array<String>)


21448
21449
21450
21451
21452
21453
21454
# File 'lib/aws-sdk-glue/types.rb', line 21448

class SelectFromCollection < Struct.new(
  :name,
  :inputs,
  :index)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the transform node.

Returns:

  • (String)


21448
21449
21450
21451
21452
21453
21454
# File 'lib/aws-sdk-glue/types.rb', line 21448

class SelectFromCollection < Struct.new(
  :name,
  :inputs,
  :index)
  SENSITIVE = []
  include Aws::Structure
end