Class: Aws::Glue::Types::CodeGenNodeArg
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CodeGenNodeArg
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
An argument or property of a node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the argument or property.
-
#param ⇒ Boolean
True if the value is used as a parameter.
-
#value ⇒ String
The value of the argument or property.
Instance Attribute Details
#name ⇒ String
The name of the argument or property.
2652 2653 2654 2655 2656 2657 2658 |
# File 'lib/aws-sdk-glue/types.rb', line 2652 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |
#param ⇒ Boolean
True if the value is used as a parameter.
2652 2653 2654 2655 2656 2657 2658 |
# File 'lib/aws-sdk-glue/types.rb', line 2652 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the argument or property.
2652 2653 2654 2655 2656 2657 2658 |
# File 'lib/aws-sdk-glue/types.rb', line 2652 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |