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

com.pulumi.aws.glue.inputs.PartitionStorageDescriptorSerDeInfoArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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.glue.inputs;

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


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

    public static final PartitionStorageDescriptorSerDeInfoArgs Empty = new PartitionStorageDescriptorSerDeInfoArgs();

    /**
     * Name of the SerDe.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the SerDe.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * A map of initialization parameters for the SerDe, in key-value form.
     * 
     */
    @Import(name="parameters")
    private @Nullable Output> parameters;

    /**
     * @return A map of initialization parameters for the SerDe, in key-value form.
     * 
     */
    public Optional>> parameters() {
        return Optional.ofNullable(this.parameters);
    }

    /**
     * Usually the class that implements the SerDe. An example is: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
     * 
     */
    @Import(name="serializationLibrary")
    private @Nullable Output serializationLibrary;

    /**
     * @return Usually the class that implements the SerDe. An example is: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
     * 
     */
    public Optional> serializationLibrary() {
        return Optional.ofNullable(this.serializationLibrary);
    }

    private PartitionStorageDescriptorSerDeInfoArgs() {}

    private PartitionStorageDescriptorSerDeInfoArgs(PartitionStorageDescriptorSerDeInfoArgs $) {
        this.name = $.name;
        this.parameters = $.parameters;
        this.serializationLibrary = $.serializationLibrary;
    }

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

    public static final class Builder {
        private PartitionStorageDescriptorSerDeInfoArgs $;

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

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

        /**
         * @param name Name of the SerDe.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the SerDe.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param parameters A map of initialization parameters for the SerDe, in key-value form.
         * 
         * @return builder
         * 
         */
        public Builder parameters(@Nullable Output> parameters) {
            $.parameters = parameters;
            return this;
        }

        /**
         * @param parameters A map of initialization parameters for the SerDe, in key-value form.
         * 
         * @return builder
         * 
         */
        public Builder parameters(Map parameters) {
            return parameters(Output.of(parameters));
        }

        /**
         * @param serializationLibrary Usually the class that implements the SerDe. An example is: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
         * 
         * @return builder
         * 
         */
        public Builder serializationLibrary(@Nullable Output serializationLibrary) {
            $.serializationLibrary = serializationLibrary;
            return this;
        }

        /**
         * @param serializationLibrary Usually the class that implements the SerDe. An example is: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
         * 
         * @return builder
         * 
         */
        public Builder serializationLibrary(String serializationLibrary) {
            return serializationLibrary(Output.of(serializationLibrary));
        }

        public PartitionStorageDescriptorSerDeInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy