Class: Aws::IoTAnalytics::Types::SchemaDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::SchemaDefinition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
Information needed to define a schema.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#columns ⇒ Array<Types::Column>
Specifies one or more columns that store your data.
Instance Attribute Details
#columns ⇒ Array<Types::Column>
Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types.
2714 2715 2716 2717 2718 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2714 class SchemaDefinition < Struct.new( :columns) SENSITIVE = [] include Aws::Structure end |