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.
2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-glue/types.rb', line 2958 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |
#param ⇒ Boolean
True if the value is used as a parameter.
2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-glue/types.rb', line 2958 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the argument or property.
2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-glue/types.rb', line 2958 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |