Method: Aws::Glue::Types::StorageDescriptor#location
- Defined in:
- lib/aws-sdk-glue/types.rb
#location ⇒ String
The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.
24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 |
# File 'lib/aws-sdk-glue/types.rb', line 24757 class StorageDescriptor < Struct.new( :columns, :location, :additional_locations, :input_format, :output_format, :compressed, :number_of_buckets, :serde_info, :bucket_columns, :sort_columns, :parameters, :skewed_info, :stored_as_sub_directories, :schema_reference) SENSITIVE = [] include Aws::Structure end |