Class: Aws::Glue::Types::TargetTableConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TargetTableConfig
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Properties used by the target leg to partition the data on the target.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#integration_arn ⇒ String
The ARN of the integration that owns this target table configuration.
-
#partition_spec ⇒ Array<Types::IntegrationPartition>
Determines the file layout on the target.
-
#target_table_name ⇒ String
The optional name of a target table.
-
#unnest_spec ⇒ String
Specifies how nested objects are flattened to top-level elements.
Instance Attribute Details
#integration_arn ⇒ String
The ARN of the integration that owns this target table configuration.
31160 31161 31162 31163 31164 31165 31166 31167 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 31160 class TargetTableConfig < Struct.new( :unnest_spec, :partition_spec, :target_table_name, :integration_arn) SENSITIVE = [] include Aws::Structure end |
#partition_spec ⇒ Array<Types::IntegrationPartition>
Determines the file layout on the target.
31160 31161 31162 31163 31164 31165 31166 31167 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 31160 class TargetTableConfig < Struct.new( :unnest_spec, :partition_spec, :target_table_name, :integration_arn) SENSITIVE = [] include Aws::Structure end |
#target_table_name ⇒ String
The optional name of a target table.
31160 31161 31162 31163 31164 31165 31166 31167 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 31160 class TargetTableConfig < Struct.new( :unnest_spec, :partition_spec, :target_table_name, :integration_arn) SENSITIVE = [] include Aws::Structure end |
#unnest_spec ⇒ String
Specifies how nested objects are flattened to top-level elements. Valid values are: "TOPLEVEL", "FULL", or "NOUNNEST".
31160 31161 31162 31163 31164 31165 31166 31167 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 31160 class TargetTableConfig < Struct.new( :unnest_spec, :partition_spec, :target_table_name, :integration_arn) SENSITIVE = [] include Aws::Structure end |