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

com.pulumi.aws.keyspaces.inputs.TableCommentArgs 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.keyspaces.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class TableCommentArgs extends com.pulumi.resources.ResourceArgs {

    public static final TableCommentArgs Empty = new TableCommentArgs();

    /**
     * A description of the table.
     * 
     */
    @Import(name="message")
    private @Nullable Output message;

    /**
     * @return A description of the table.
     * 
     */
    public Optional> message() {
        return Optional.ofNullable(this.message);
    }

    private TableCommentArgs() {}

    private TableCommentArgs(TableCommentArgs $) {
        this.message = $.message;
    }

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

    public static final class Builder {
        private TableCommentArgs $;

        public Builder() {
            $ = new TableCommentArgs();
        }

        public Builder(TableCommentArgs defaults) {
            $ = new TableCommentArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param message A description of the table.
         * 
         * @return builder
         * 
         */
        public Builder message(@Nullable Output message) {
            $.message = message;
            return this;
        }

        /**
         * @param message A description of the table.
         * 
         * @return builder
         * 
         */
        public Builder message(String message) {
            return message(Output.of(message));
        }

        public TableCommentArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy