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

com.pulumi.aws.medialive.outputs.ChannelEncoderSettingsGlobalConfigurationInputLossBehavior Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

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.aws.medialive.outputs;

import com.pulumi.aws.medialive.outputs.ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ChannelEncoderSettingsGlobalConfigurationInputLossBehavior {
    private @Nullable Integer blackFrameMsec;
    private @Nullable String inputLossImageColor;
    private @Nullable ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate inputLossImageSlate;
    private @Nullable String inputLossImageType;
    private @Nullable Integer repeatFrameMsec;

    private ChannelEncoderSettingsGlobalConfigurationInputLossBehavior() {}
    public Optional blackFrameMsec() {
        return Optional.ofNullable(this.blackFrameMsec);
    }
    public Optional inputLossImageColor() {
        return Optional.ofNullable(this.inputLossImageColor);
    }
    public Optional inputLossImageSlate() {
        return Optional.ofNullable(this.inputLossImageSlate);
    }
    public Optional inputLossImageType() {
        return Optional.ofNullable(this.inputLossImageType);
    }
    public Optional repeatFrameMsec() {
        return Optional.ofNullable(this.repeatFrameMsec);
    }

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

    public static Builder builder(ChannelEncoderSettingsGlobalConfigurationInputLossBehavior defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Integer blackFrameMsec;
        private @Nullable String inputLossImageColor;
        private @Nullable ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate inputLossImageSlate;
        private @Nullable String inputLossImageType;
        private @Nullable Integer repeatFrameMsec;
        public Builder() {}
        public Builder(ChannelEncoderSettingsGlobalConfigurationInputLossBehavior defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.blackFrameMsec = defaults.blackFrameMsec;
    	      this.inputLossImageColor = defaults.inputLossImageColor;
    	      this.inputLossImageSlate = defaults.inputLossImageSlate;
    	      this.inputLossImageType = defaults.inputLossImageType;
    	      this.repeatFrameMsec = defaults.repeatFrameMsec;
        }

        @CustomType.Setter
        public Builder blackFrameMsec(@Nullable Integer blackFrameMsec) {

            this.blackFrameMsec = blackFrameMsec;
            return this;
        }
        @CustomType.Setter
        public Builder inputLossImageColor(@Nullable String inputLossImageColor) {

            this.inputLossImageColor = inputLossImageColor;
            return this;
        }
        @CustomType.Setter
        public Builder inputLossImageSlate(@Nullable ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate inputLossImageSlate) {

            this.inputLossImageSlate = inputLossImageSlate;
            return this;
        }
        @CustomType.Setter
        public Builder inputLossImageType(@Nullable String inputLossImageType) {

            this.inputLossImageType = inputLossImageType;
            return this;
        }
        @CustomType.Setter
        public Builder repeatFrameMsec(@Nullable Integer repeatFrameMsec) {

            this.repeatFrameMsec = repeatFrameMsec;
            return this;
        }
        public ChannelEncoderSettingsGlobalConfigurationInputLossBehavior build() {
            final var _resultValue = new ChannelEncoderSettingsGlobalConfigurationInputLossBehavior();
            _resultValue.blackFrameMsec = blackFrameMsec;
            _resultValue.inputLossImageColor = inputLossImageColor;
            _resultValue.inputLossImageSlate = inputLossImageSlate;
            _resultValue.inputLossImageType = inputLossImageType;
            _resultValue.repeatFrameMsec = repeatFrameMsec;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy