Class: Aws::GlueDataBrew::Types::JsonOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::JsonOptions
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass JsonOptions data as a hash:
{
multi_line: false,
}
Represents the JSON-specific options that define how input is to be interpreted by Glue DataBrew.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#multi_line ⇒ Boolean
A value that specifies whether JSON input contains embedded new line characters.
Instance Attribute Details
#multi_line ⇒ Boolean
A value that specifies whether JSON input contains embedded new line characters.
3109 3110 3111 3112 3113 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3109 class JsonOptions < Struct.new( :multi_line) SENSITIVE = [] include Aws::Structure end |