com.pulumi.aws.quicksight.outputs.DataSetRefreshProperties 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.DataSetRefreshPropertiesRefreshConfiguration;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
@CustomType
public final class DataSetRefreshProperties {
/**
* @return The refresh configuration for the data set. See refresh_configuration.
*
*/
private DataSetRefreshPropertiesRefreshConfiguration refreshConfiguration;
private DataSetRefreshProperties() {}
/**
* @return The refresh configuration for the data set. See refresh_configuration.
*
*/
public DataSetRefreshPropertiesRefreshConfiguration refreshConfiguration() {
return this.refreshConfiguration;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataSetRefreshProperties defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private DataSetRefreshPropertiesRefreshConfiguration refreshConfiguration;
public Builder() {}
public Builder(DataSetRefreshProperties defaults) {
Objects.requireNonNull(defaults);
this.refreshConfiguration = defaults.refreshConfiguration;
}
@CustomType.Setter
public Builder refreshConfiguration(DataSetRefreshPropertiesRefreshConfiguration refreshConfiguration) {
if (refreshConfiguration == null) {
throw new MissingRequiredPropertyException("DataSetRefreshProperties", "refreshConfiguration");
}
this.refreshConfiguration = refreshConfiguration;
return this;
}
public DataSetRefreshProperties build() {
final var _resultValue = new DataSetRefreshProperties();
_resultValue.refreshConfiguration = refreshConfiguration;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy