
com.pulumi.aws.cleanrooms.ConfiguredTableArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.cleanrooms;
import com.pulumi.aws.cleanrooms.inputs.ConfiguredTableTableReferenceArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ConfiguredTableArgs extends com.pulumi.resources.ResourceArgs {
public static final ConfiguredTableArgs Empty = new ConfiguredTableArgs();
/**
* The columns of the references table which will be included in the configured table.
*
*/
@Import(name="allowedColumns", required=true)
private Output> allowedColumns;
/**
* @return The columns of the references table which will be included in the configured table.
*
*/
public Output> allowedColumns() {
return this.allowedColumns;
}
/**
* The analysis method for the configured table. The only valid value is currently `DIRECT_QUERY`.
*
*/
@Import(name="analysisMethod", required=true)
private Output analysisMethod;
/**
* @return The analysis method for the configured table. The only valid value is currently `DIRECT_QUERY`.
*
*/
public Output analysisMethod() {
return this.analysisMethod;
}
/**
* A description for the configured table.
*
*/
@Import(name="description")
private @Nullable Output description;
/**
* @return A description for the configured table.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy