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

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs Maven / Gradle / Ivy

The 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.akamai.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;


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

    public static final GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs Empty = new GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs();

    /**
     * Sets the type of media content to optimize.
     * 
     */
    @Import(name="behavior")
    private @Nullable Output behavior;

    /**
     * @return Sets the type of media content to optimize.
     * 
     */
    public Optional> behavior() {
        return Optional.ofNullable(this.behavior);
    }

    /**
     * The type of DVR.
     * 
     */
    @Import(name="dvrType")
    private @Nullable Output dvrType;

    /**
     * @return The type of DVR.
     * 
     */
    public Optional> dvrType() {
        return Optional.ofNullable(this.dvrType);
    }

    /**
     * Set the duration for your media, or `0m` if a DVR is not required.
     * 
     */
    @Import(name="dvrWindow")
    private @Nullable Output dvrWindow;

    /**
     * @return Set the duration for your media, or `0m` if a DVR is not required.
     * 
     */
    public Optional> dvrWindow() {
        return Optional.ofNullable(this.dvrWindow);
    }

    /**
     * Enables ultra low latency (ULL) streaming. ULL reduces latency and decreases overall transfer time of live streams.
     * 
     */
    @Import(name="enableUllStreaming")
    private @Nullable Output enableUllStreaming;

    /**
     * @return Enables ultra low latency (ULL) streaming. ULL reduces latency and decreases overall transfer time of live streams.
     * 
     */
    public Optional> enableUllStreaming() {
        return Optional.ofNullable(this.enableUllStreaming);
    }

    /**
     * This specifies when the live media event ends.
     * 
     */
    @Import(name="endTime")
    private @Nullable Output endTime;

    /**
     * @return This specifies when the live media event ends.
     * 
     */
    public Optional> endTime() {
        return Optional.ofNullable(this.endTime);
    }

    /**
     * The type of live media.
     * 
     */
    @Import(name="liveType")
    private @Nullable Output liveType;

    /**
     * @return The type of live media.
     * 
     */
    public Optional> liveType() {
        return Optional.ofNullable(this.liveType);
    }

    /**
     * Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
     * 
     */
    @Import(name="locked")
    private @Nullable Output locked;

    /**
     * @return Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
     * 
     */
    public Optional> locked() {
        return Optional.ofNullable(this.locked);
    }

    /**
     * Allows you to configure advanced media options.
     * 
     */
    @Import(name="showAdvanced")
    private @Nullable Output showAdvanced;

    /**
     * @return Allows you to configure advanced media options.
     * 
     */
    public Optional> showAdvanced() {
        return Optional.ofNullable(this.showAdvanced);
    }

    /**
     * This specifies when the live media event begins.
     * 
     */
    @Import(name="startTime")
    private @Nullable Output startTime;

    /**
     * @return This specifies when the live media event begins.
     * 
     */
    public Optional> startTime() {
        return Optional.ofNullable(this.startTime);
    }

    /**
     * This option is for internal usage only.
     * 
     */
    @Import(name="templateUuid")
    private @Nullable Output templateUuid;

    /**
     * @return This option is for internal usage only.
     * 
     */
    public Optional> templateUuid() {
        return Optional.ofNullable(this.templateUuid);
    }

    /**
     * A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
     * 
     */
    @Import(name="uuid")
    private @Nullable Output uuid;

    /**
     * @return A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
     * 
     */
    public Optional> uuid() {
        return Optional.ofNullable(this.uuid);
    }

    private GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs() {}

    private GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs(GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs $) {
        this.behavior = $.behavior;
        this.dvrType = $.dvrType;
        this.dvrWindow = $.dvrWindow;
        this.enableUllStreaming = $.enableUllStreaming;
        this.endTime = $.endTime;
        this.liveType = $.liveType;
        this.locked = $.locked;
        this.showAdvanced = $.showAdvanced;
        this.startTime = $.startTime;
        this.templateUuid = $.templateUuid;
        this.uuid = $.uuid;
    }

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

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs $;

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

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

        /**
         * @param behavior Sets the type of media content to optimize.
         * 
         * @return builder
         * 
         */
        public Builder behavior(@Nullable Output behavior) {
            $.behavior = behavior;
            return this;
        }

        /**
         * @param behavior Sets the type of media content to optimize.
         * 
         * @return builder
         * 
         */
        public Builder behavior(String behavior) {
            return behavior(Output.of(behavior));
        }

        /**
         * @param dvrType The type of DVR.
         * 
         * @return builder
         * 
         */
        public Builder dvrType(@Nullable Output dvrType) {
            $.dvrType = dvrType;
            return this;
        }

        /**
         * @param dvrType The type of DVR.
         * 
         * @return builder
         * 
         */
        public Builder dvrType(String dvrType) {
            return dvrType(Output.of(dvrType));
        }

        /**
         * @param dvrWindow Set the duration for your media, or `0m` if a DVR is not required.
         * 
         * @return builder
         * 
         */
        public Builder dvrWindow(@Nullable Output dvrWindow) {
            $.dvrWindow = dvrWindow;
            return this;
        }

        /**
         * @param dvrWindow Set the duration for your media, or `0m` if a DVR is not required.
         * 
         * @return builder
         * 
         */
        public Builder dvrWindow(String dvrWindow) {
            return dvrWindow(Output.of(dvrWindow));
        }

        /**
         * @param enableUllStreaming Enables ultra low latency (ULL) streaming. ULL reduces latency and decreases overall transfer time of live streams.
         * 
         * @return builder
         * 
         */
        public Builder enableUllStreaming(@Nullable Output enableUllStreaming) {
            $.enableUllStreaming = enableUllStreaming;
            return this;
        }

        /**
         * @param enableUllStreaming Enables ultra low latency (ULL) streaming. ULL reduces latency and decreases overall transfer time of live streams.
         * 
         * @return builder
         * 
         */
        public Builder enableUllStreaming(Boolean enableUllStreaming) {
            return enableUllStreaming(Output.of(enableUllStreaming));
        }

        /**
         * @param endTime This specifies when the live media event ends.
         * 
         * @return builder
         * 
         */
        public Builder endTime(@Nullable Output endTime) {
            $.endTime = endTime;
            return this;
        }

        /**
         * @param endTime This specifies when the live media event ends.
         * 
         * @return builder
         * 
         */
        public Builder endTime(String endTime) {
            return endTime(Output.of(endTime));
        }

        /**
         * @param liveType The type of live media.
         * 
         * @return builder
         * 
         */
        public Builder liveType(@Nullable Output liveType) {
            $.liveType = liveType;
            return this;
        }

        /**
         * @param liveType The type of live media.
         * 
         * @return builder
         * 
         */
        public Builder liveType(String liveType) {
            return liveType(Output.of(liveType));
        }

        /**
         * @param locked Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder locked(@Nullable Output locked) {
            $.locked = locked;
            return this;
        }

        /**
         * @param locked Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder locked(Boolean locked) {
            return locked(Output.of(locked));
        }

        /**
         * @param showAdvanced Allows you to configure advanced media options.
         * 
         * @return builder
         * 
         */
        public Builder showAdvanced(@Nullable Output showAdvanced) {
            $.showAdvanced = showAdvanced;
            return this;
        }

        /**
         * @param showAdvanced Allows you to configure advanced media options.
         * 
         * @return builder
         * 
         */
        public Builder showAdvanced(Boolean showAdvanced) {
            return showAdvanced(Output.of(showAdvanced));
        }

        /**
         * @param startTime This specifies when the live media event begins.
         * 
         * @return builder
         * 
         */
        public Builder startTime(@Nullable Output startTime) {
            $.startTime = startTime;
            return this;
        }

        /**
         * @param startTime This specifies when the live media event begins.
         * 
         * @return builder
         * 
         */
        public Builder startTime(String startTime) {
            return startTime(Output.of(startTime));
        }

        /**
         * @param templateUuid This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder templateUuid(@Nullable Output templateUuid) {
            $.templateUuid = templateUuid;
            return this;
        }

        /**
         * @param templateUuid This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder templateUuid(String templateUuid) {
            return templateUuid(Output.of(templateUuid));
        }

        /**
         * @param uuid A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder uuid(@Nullable Output uuid) {
            $.uuid = uuid;
            return this;
        }

        /**
         * @param uuid A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder uuid(String uuid) {
            return uuid(Output.of(uuid));
        }

        public GetPropertyRulesBuilderRulesV20230530BehaviorSegmentedMediaOptimizationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy