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

com.pulumi.azurenative.media.inputs.HlsSettingsArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
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.azurenative.media.inputs;

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


/**
 * The HLS setting for a track.
 * 
 */
public final class HlsSettingsArgs extends com.pulumi.resources.ResourceArgs {

    public static final HlsSettingsArgs Empty = new HlsSettingsArgs();

    /**
     * The characteristics for the HLS setting.
     * 
     */
    @Import(name="characteristics")
    private @Nullable Output characteristics;

    /**
     * @return The characteristics for the HLS setting.
     * 
     */
    public Optional> characteristics() {
        return Optional.ofNullable(this.characteristics);
    }

    /**
     * The default for the HLS setting.
     * 
     */
    @Import(name="default")
    private @Nullable Output default_;

    /**
     * @return The default for the HLS setting.
     * 
     */
    public Optional> default_() {
        return Optional.ofNullable(this.default_);
    }

    /**
     * The forced for the HLS setting.
     * 
     */
    @Import(name="forced")
    private @Nullable Output forced;

    /**
     * @return The forced for the HLS setting.
     * 
     */
    public Optional> forced() {
        return Optional.ofNullable(this.forced);
    }

    private HlsSettingsArgs() {}

    private HlsSettingsArgs(HlsSettingsArgs $) {
        this.characteristics = $.characteristics;
        this.default_ = $.default_;
        this.forced = $.forced;
    }

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

    public static final class Builder {
        private HlsSettingsArgs $;

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

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

        /**
         * @param characteristics The characteristics for the HLS setting.
         * 
         * @return builder
         * 
         */
        public Builder characteristics(@Nullable Output characteristics) {
            $.characteristics = characteristics;
            return this;
        }

        /**
         * @param characteristics The characteristics for the HLS setting.
         * 
         * @return builder
         * 
         */
        public Builder characteristics(String characteristics) {
            return characteristics(Output.of(characteristics));
        }

        /**
         * @param default_ The default for the HLS setting.
         * 
         * @return builder
         * 
         */
        public Builder default_(@Nullable Output default_) {
            $.default_ = default_;
            return this;
        }

        /**
         * @param default_ The default for the HLS setting.
         * 
         * @return builder
         * 
         */
        public Builder default_(Boolean default_) {
            return default_(Output.of(default_));
        }

        /**
         * @param forced The forced for the HLS setting.
         * 
         * @return builder
         * 
         */
        public Builder forced(@Nullable Output forced) {
            $.forced = forced;
            return this;
        }

        /**
         * @param forced The forced for the HLS setting.
         * 
         * @return builder
         * 
         */
        public Builder forced(Boolean forced) {
            return forced(Output.of(forced));
        }

        public HlsSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy