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

com.pulumi.aws.kinesis.inputs.AnalyticsApplicationOutputSchemaArgs 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.kinesis.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final AnalyticsApplicationOutputSchemaArgs Empty = new AnalyticsApplicationOutputSchemaArgs();

    /**
     * The Format Type of the records on the output stream. Can be `CSV` or `JSON`.
     * 
     */
    @Import(name="recordFormatType", required=true)
    private Output recordFormatType;

    /**
     * @return The Format Type of the records on the output stream. Can be `CSV` or `JSON`.
     * 
     */
    public Output recordFormatType() {
        return this.recordFormatType;
    }

    private AnalyticsApplicationOutputSchemaArgs() {}

    private AnalyticsApplicationOutputSchemaArgs(AnalyticsApplicationOutputSchemaArgs $) {
        this.recordFormatType = $.recordFormatType;
    }

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

    public static final class Builder {
        private AnalyticsApplicationOutputSchemaArgs $;

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

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

        /**
         * @param recordFormatType The Format Type of the records on the output stream. Can be `CSV` or `JSON`.
         * 
         * @return builder
         * 
         */
        public Builder recordFormatType(Output recordFormatType) {
            $.recordFormatType = recordFormatType;
            return this;
        }

        /**
         * @param recordFormatType The Format Type of the records on the output stream. Can be `CSV` or `JSON`.
         * 
         * @return builder
         * 
         */
        public Builder recordFormatType(String recordFormatType) {
            return recordFormatType(Output.of(recordFormatType));
        }

        public AnalyticsApplicationOutputSchemaArgs build() {
            if ($.recordFormatType == null) {
                throw new MissingRequiredPropertyException("AnalyticsApplicationOutputSchemaArgs", "recordFormatType");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy