ConfiguredTable

class ConfiguredTable : KotlinCustomResource

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

Properties

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

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

Link copied to clipboard
val analysisMethod: Output<String>

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

Link copied to clipboard
val arn: Output<String>

The ARN of the configured table.

Link copied to clipboard
val createTime: Output<String>

The date and time the configured table was created.

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

A description for the configured table.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the configured table.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
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>>?

Key value pairs which tag the configured table.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>
Link copied to clipboard
val updateTime: Output<String>

The date and time the configured table was last updated.

Link copied to clipboard
val urn: Output<String>