com.pulumi.aws.quicksight.outputs.DataSetLogicalTableMapSource 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.quicksight.outputs;
import com.pulumi.aws.quicksight.outputs.DataSetLogicalTableMapSourceJoinInstruction;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DataSetLogicalTableMapSource {
/**
* @return ARN of the parent data set.
*
*/
private @Nullable String dataSetArn;
/**
* @return Specifies the result of a join of two logical tables. See join_instruction.
*
*/
private @Nullable DataSetLogicalTableMapSourceJoinInstruction joinInstruction;
/**
* @return Physical table ID.
*
*/
private @Nullable String physicalTableId;
private DataSetLogicalTableMapSource() {}
/**
* @return ARN of the parent data set.
*
*/
public Optional dataSetArn() {
return Optional.ofNullable(this.dataSetArn);
}
/**
* @return Specifies the result of a join of two logical tables. See join_instruction.
*
*/
public Optional joinInstruction() {
return Optional.ofNullable(this.joinInstruction);
}
/**
* @return Physical table ID.
*
*/
public Optional physicalTableId() {
return Optional.ofNullable(this.physicalTableId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataSetLogicalTableMapSource defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataSetArn;
private @Nullable DataSetLogicalTableMapSourceJoinInstruction joinInstruction;
private @Nullable String physicalTableId;
public Builder() {}
public Builder(DataSetLogicalTableMapSource defaults) {
Objects.requireNonNull(defaults);
this.dataSetArn = defaults.dataSetArn;
this.joinInstruction = defaults.joinInstruction;
this.physicalTableId = defaults.physicalTableId;
}
@CustomType.Setter
public Builder dataSetArn(@Nullable String dataSetArn) {
this.dataSetArn = dataSetArn;
return this;
}
@CustomType.Setter
public Builder joinInstruction(@Nullable DataSetLogicalTableMapSourceJoinInstruction joinInstruction) {
this.joinInstruction = joinInstruction;
return this;
}
@CustomType.Setter
public Builder physicalTableId(@Nullable String physicalTableId) {
this.physicalTableId = physicalTableId;
return this;
}
public DataSetLogicalTableMapSource build() {
final var _resultValue = new DataSetLogicalTableMapSource();
_resultValue.dataSetArn = dataSetArn;
_resultValue.joinInstruction = joinInstruction;
_resultValue.physicalTableId = physicalTableId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy