ConfiguredTableArgs

data class ConfiguredTableArgs(val allowedColumns: Output<List<String>>? = null, val analysisMethod: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val tableReference: Output<ConfiguredTableTableReferenceArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ConfiguredTableArgs>

Provides a AWS Clean Rooms configured table. Configured tables are used to represent references to existing tables in the AWS Glue Data Catalog.

Example Usage

Configured table with tags

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cleanrooms.ConfiguredTable;
import com.pulumi.aws.cleanrooms.ConfiguredTableArgs;
import com.pulumi.aws.cleanrooms.inputs.ConfiguredTableTableReferenceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testConfiguredTable = new ConfiguredTable("testConfiguredTable", ConfiguredTableArgs.builder()
.allowedColumns(
"column1",
"column2",
"column3")
.analysisMethod("DIRECT_QUERY")
.description("I made this table with Pulumi!")
.tableReference(ConfiguredTableTableReferenceArgs.builder()
.databaseName("example_database")
.tableName("example_table")
.build())
.tags(Map.of("Project", "Pulumi"))
.build());
}
}

Import

Using pulumi import, import aws_cleanrooms_configured_table using the id. For example:

$ pulumi import aws:cleanrooms/configuredTable:ConfiguredTable table 1234abcd-12ab-34cd-56ef-1234567890ab

Constructors

Link copied to clipboard
fun ConfiguredTableArgs(allowedColumns: Output<List<String>>? = null, analysisMethod: Output<String>? = null, description: Output<String>? = null, name: Output<String>? = null, tableReference: Output<ConfiguredTableTableReferenceArgs>? = null, tags: Output<Map<String, String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ConfiguredTableArgs

Properties

Link copied to clipboard
val allowedColumns: Output<List<String>>? = null

The columns of the references table which will be included in the configured table.

Link copied to clipboard
val analysisMethod: Output<String>? = null

The analysis method for the configured table. The only valid value is currently DIRECT_QUERY.

Link copied to clipboard
val description: Output<String>? = null

A description for the configured table.

Link copied to clipboard
val name: Output<String>? = null

The name of the configured table.

Link copied to clipboard

A reference to the AWS Glue table which will be used to create the configured table.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key value pairs which tag the configured table.