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

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

import com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsVideoDescriptionCodecSettingsFrameCaptureSettingsArgs;
import com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsVideoDescriptionCodecSettingsH264SettingsArgs;
import com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsVideoDescriptionCodecSettingsH265SettingsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs Empty = new ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs();

    /**
     * Frame capture settings. See Frame Capture Settings for more details.
     * 
     */
    @Import(name="frameCaptureSettings")
    private @Nullable Output frameCaptureSettings;

    /**
     * @return Frame capture settings. See Frame Capture Settings for more details.
     * 
     */
    public Optional> frameCaptureSettings() {
        return Optional.ofNullable(this.frameCaptureSettings);
    }

    /**
     * H264 settings. See H264 Settings for more details.
     * 
     */
    @Import(name="h264Settings")
    private @Nullable Output h264Settings;

    /**
     * @return H264 settings. See H264 Settings for more details.
     * 
     */
    public Optional> h264Settings() {
        return Optional.ofNullable(this.h264Settings);
    }

    @Import(name="h265Settings")
    private @Nullable Output h265Settings;

    public Optional> h265Settings() {
        return Optional.ofNullable(this.h265Settings);
    }

    private ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs() {}

    private ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs(ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs $) {
        this.frameCaptureSettings = $.frameCaptureSettings;
        this.h264Settings = $.h264Settings;
        this.h265Settings = $.h265Settings;
    }

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

    public static final class Builder {
        private ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs $;

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

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

        /**
         * @param frameCaptureSettings Frame capture settings. See Frame Capture Settings for more details.
         * 
         * @return builder
         * 
         */
        public Builder frameCaptureSettings(@Nullable Output frameCaptureSettings) {
            $.frameCaptureSettings = frameCaptureSettings;
            return this;
        }

        /**
         * @param frameCaptureSettings Frame capture settings. See Frame Capture Settings for more details.
         * 
         * @return builder
         * 
         */
        public Builder frameCaptureSettings(ChannelEncoderSettingsVideoDescriptionCodecSettingsFrameCaptureSettingsArgs frameCaptureSettings) {
            return frameCaptureSettings(Output.of(frameCaptureSettings));
        }

        /**
         * @param h264Settings H264 settings. See H264 Settings for more details.
         * 
         * @return builder
         * 
         */
        public Builder h264Settings(@Nullable Output h264Settings) {
            $.h264Settings = h264Settings;
            return this;
        }

        /**
         * @param h264Settings H264 settings. See H264 Settings for more details.
         * 
         * @return builder
         * 
         */
        public Builder h264Settings(ChannelEncoderSettingsVideoDescriptionCodecSettingsH264SettingsArgs h264Settings) {
            return h264Settings(Output.of(h264Settings));
        }

        public Builder h265Settings(@Nullable Output h265Settings) {
            $.h265Settings = h265Settings;
            return this;
        }

        public Builder h265Settings(ChannelEncoderSettingsVideoDescriptionCodecSettingsH265SettingsArgs h265Settings) {
            return h265Settings(Output.of(h265Settings));
        }

        public ChannelEncoderSettingsVideoDescriptionCodecSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy