GetConfiguredTableResult

data class GetConfiguredTableResult(val analysisMethod: ConfiguredTableAnalysisMethod? = null, val analysisRules: List<ConfiguredTableAnalysisRule>? = null, val arn: String? = null, val configuredTableIdentifier: String? = null, val description: String? = null, val name: String? = null, val selectedAnalysisMethods: List<ConfiguredTableSelectedAnalysisMethod>? = null, val tags: List<Tag>? = null)

Constructors

Link copied to clipboard
constructor(analysisMethod: ConfiguredTableAnalysisMethod? = null, analysisRules: List<ConfiguredTableAnalysisRule>? = null, arn: String? = null, configuredTableIdentifier: String? = null, description: String? = null, name: String? = null, selectedAnalysisMethods: List<ConfiguredTableSelectedAnalysisMethod>? = null, tags: List<Tag>? = null)

Types

Link copied to clipboard
object Companion

Properties

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
val arn: String? = null

Returns the Amazon Resource Name (ARN) of the specified configured table. Example: arn:aws:cleanrooms:us-east-1:111122223333:configuredtable/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111

Link copied to clipboard

Returns the unique identifier of the specified configured table. Example: a1b2c3d4-5678-90ab-cdef-EXAMPLE33333

Link copied to clipboard
val description: String? = null

A description for the configured table.

Link copied to clipboard
val name: String? = null

A name for the configured table.

Link copied to clipboard

The selected analysis methods for the configured table.

Link copied to clipboard
val tags: List<Tag>? = null

An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.