All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.quicksight.outputs.DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties Maven / Gradle / Ivy

// *** 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.quicksight.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties {
    /**
     * @return A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by Amazon QuickSight to optimize query performance.
     * 
     */
    private @Nullable Boolean uniqueKey;

    private DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties() {}
    /**
     * @return A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by Amazon QuickSight to optimize query performance.
     * 
     */
    public Optional uniqueKey() {
        return Optional.ofNullable(this.uniqueKey);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Boolean uniqueKey;
        public Builder() {}
        public Builder(DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.uniqueKey = defaults.uniqueKey;
        }

        @CustomType.Setter
        public Builder uniqueKey(@Nullable Boolean uniqueKey) {

            this.uniqueKey = uniqueKey;
            return this;
        }
        public DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties build() {
            final var _resultValue = new DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties();
            _resultValue.uniqueKey = uniqueKey;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy