Configured Table Args
data class ConfiguredTableArgs(val allowedColumns: Output<List<String>>? = null, val analysisMethod: Output<ConfiguredTableAnalysisMethod>? = null, val analysisRules: Output<List<ConfiguredTableAnalysisRuleArgs>>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val selectedAnalysisMethods: Output<List<ConfiguredTableSelectedAnalysisMethod>>? = null, val tableReference: Output<Any>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<ConfiguredTableArgs>
Represents a table that can be associated with collaborations
Constructors
Link copied to clipboard
constructor(allowedColumns: Output<List<String>>? = null, analysisMethod: Output<ConfiguredTableAnalysisMethod>? = null, analysisRules: Output<List<ConfiguredTableAnalysisRuleArgs>>? = null, description: Output<String>? = null, name: Output<String>? = null, selectedAnalysisMethods: Output<List<ConfiguredTableSelectedAnalysisMethod>>? = null, tableReference: Output<Any>? = null, tags: Output<List<TagArgs>>? = null)
Properties
Link copied to clipboard
The columns within the underlying AWS Glue table that can be utilized within collaborations.
Link copied to clipboard
The analysis method for the configured table. DIRECT_QUERY
allows SQL queries to be run directly on this table. DIRECT_JOB
allows PySpark jobs to be run directly on this table. MULTIPLE
allows both SQL queries and PySpark jobs to be run directly on this table.
Link copied to clipboard
The analysis rule that was created for the configured table.
Link copied to clipboard
A description for the configured table.
Link copied to clipboard
The selected analysis methods for the configured table.
Link copied to clipboard
The table that this configured table represents.