com.pulumi.aws.timestreamwrite.inputs.GetTablePlainArgs 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.timestreamwrite.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetTablePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetTablePlainArgs Empty = new GetTablePlainArgs();
/**
* Name of the Timestream database.
*
*/
@Import(name="databaseName", required=true)
private String databaseName;
/**
* @return Name of the Timestream database.
*
*/
public String databaseName() {
return this.databaseName;
}
/**
* Name of the Timestream table.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Name of the Timestream table.
*
*/
public String name() {
return this.name;
}
private GetTablePlainArgs() {}
private GetTablePlainArgs(GetTablePlainArgs $) {
this.databaseName = $.databaseName;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetTablePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetTablePlainArgs $;
public Builder() {
$ = new GetTablePlainArgs();
}
public Builder(GetTablePlainArgs defaults) {
$ = new GetTablePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param databaseName Name of the Timestream database.
*
* @return builder
*
*/
public Builder databaseName(String databaseName) {
$.databaseName = databaseName;
return this;
}
/**
* @param name Name of the Timestream table.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
public GetTablePlainArgs build() {
if ($.databaseName == null) {
throw new MissingRequiredPropertyException("GetTablePlainArgs", "databaseName");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("GetTablePlainArgs", "name");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy