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

com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs 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.medialive.inputs;

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


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

    public static final ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs Empty = new ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs();

    /**
     * Average bitrate in bits/second.
     * 
     */
    @Import(name="bitrate")
    private @Nullable Output bitrate;

    /**
     * @return Average bitrate in bits/second.
     * 
     */
    public Optional> bitrate() {
        return Optional.ofNullable(this.bitrate);
    }

    /**
     * Dolby Digital Plus with Dolby Atmos coding mode.
     * 
     */
    @Import(name="codingMode")
    private @Nullable Output codingMode;

    /**
     * @return Dolby Digital Plus with Dolby Atmos coding mode.
     * 
     */
    public Optional> codingMode() {
        return Optional.ofNullable(this.codingMode);
    }

    /**
     * Sets the dialnorm for the output.
     * 
     */
    @Import(name="dialnorm")
    private @Nullable Output dialnorm;

    /**
     * @return Sets the dialnorm for the output.
     * 
     */
    public Optional> dialnorm() {
        return Optional.ofNullable(this.dialnorm);
    }

    /**
     * Sets the Dolby dynamic range compression profile.
     * 
     */
    @Import(name="drcLine")
    private @Nullable Output drcLine;

    /**
     * @return Sets the Dolby dynamic range compression profile.
     * 
     */
    public Optional> drcLine() {
        return Optional.ofNullable(this.drcLine);
    }

    /**
     * Sets the profile for heavy Dolby dynamic range compression.
     * 
     */
    @Import(name="drcRf")
    private @Nullable Output drcRf;

    /**
     * @return Sets the profile for heavy Dolby dynamic range compression.
     * 
     */
    public Optional> drcRf() {
        return Optional.ofNullable(this.drcRf);
    }

    /**
     * Height dimensional trim.
     * 
     */
    @Import(name="heightTrim")
    private @Nullable Output heightTrim;

    /**
     * @return Height dimensional trim.
     * 
     */
    public Optional> heightTrim() {
        return Optional.ofNullable(this.heightTrim);
    }

    /**
     * Surround dimensional trim.
     * 
     */
    @Import(name="surroundTrim")
    private @Nullable Output surroundTrim;

    /**
     * @return Surround dimensional trim.
     * 
     */
    public Optional> surroundTrim() {
        return Optional.ofNullable(this.surroundTrim);
    }

    private ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs() {}

    private ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs(ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs $) {
        this.bitrate = $.bitrate;
        this.codingMode = $.codingMode;
        this.dialnorm = $.dialnorm;
        this.drcLine = $.drcLine;
        this.drcRf = $.drcRf;
        this.heightTrim = $.heightTrim;
        this.surroundTrim = $.surroundTrim;
    }

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

    public static final class Builder {
        private ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs $;

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

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

        /**
         * @param bitrate Average bitrate in bits/second.
         * 
         * @return builder
         * 
         */
        public Builder bitrate(@Nullable Output bitrate) {
            $.bitrate = bitrate;
            return this;
        }

        /**
         * @param bitrate Average bitrate in bits/second.
         * 
         * @return builder
         * 
         */
        public Builder bitrate(Double bitrate) {
            return bitrate(Output.of(bitrate));
        }

        /**
         * @param codingMode Dolby Digital Plus with Dolby Atmos coding mode.
         * 
         * @return builder
         * 
         */
        public Builder codingMode(@Nullable Output codingMode) {
            $.codingMode = codingMode;
            return this;
        }

        /**
         * @param codingMode Dolby Digital Plus with Dolby Atmos coding mode.
         * 
         * @return builder
         * 
         */
        public Builder codingMode(String codingMode) {
            return codingMode(Output.of(codingMode));
        }

        /**
         * @param dialnorm Sets the dialnorm for the output.
         * 
         * @return builder
         * 
         */
        public Builder dialnorm(@Nullable Output dialnorm) {
            $.dialnorm = dialnorm;
            return this;
        }

        /**
         * @param dialnorm Sets the dialnorm for the output.
         * 
         * @return builder
         * 
         */
        public Builder dialnorm(Double dialnorm) {
            return dialnorm(Output.of(dialnorm));
        }

        /**
         * @param drcLine Sets the Dolby dynamic range compression profile.
         * 
         * @return builder
         * 
         */
        public Builder drcLine(@Nullable Output drcLine) {
            $.drcLine = drcLine;
            return this;
        }

        /**
         * @param drcLine Sets the Dolby dynamic range compression profile.
         * 
         * @return builder
         * 
         */
        public Builder drcLine(String drcLine) {
            return drcLine(Output.of(drcLine));
        }

        /**
         * @param drcRf Sets the profile for heavy Dolby dynamic range compression.
         * 
         * @return builder
         * 
         */
        public Builder drcRf(@Nullable Output drcRf) {
            $.drcRf = drcRf;
            return this;
        }

        /**
         * @param drcRf Sets the profile for heavy Dolby dynamic range compression.
         * 
         * @return builder
         * 
         */
        public Builder drcRf(String drcRf) {
            return drcRf(Output.of(drcRf));
        }

        /**
         * @param heightTrim Height dimensional trim.
         * 
         * @return builder
         * 
         */
        public Builder heightTrim(@Nullable Output heightTrim) {
            $.heightTrim = heightTrim;
            return this;
        }

        /**
         * @param heightTrim Height dimensional trim.
         * 
         * @return builder
         * 
         */
        public Builder heightTrim(Double heightTrim) {
            return heightTrim(Output.of(heightTrim));
        }

        /**
         * @param surroundTrim Surround dimensional trim.
         * 
         * @return builder
         * 
         */
        public Builder surroundTrim(@Nullable Output surroundTrim) {
            $.surroundTrim = surroundTrim;
            return this;
        }

        /**
         * @param surroundTrim Surround dimensional trim.
         * 
         * @return builder
         * 
         */
        public Builder surroundTrim(Double surroundTrim) {
            return surroundTrim(Output.of(surroundTrim));
        }

        public ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy