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

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

import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsAncillarySourceSettings {
    /**
     * @return Specifies the number (1 to 4) of the captions channel you want to extract from the ancillary captions. If you plan to convert the ancillary captions to another format, complete this field. If you plan to choose Embedded as the captions destination in the output (to pass through all the channels in the ancillary captions), leave this field blank because MediaLive ignores the field.
     * 
     */
    private @Nullable Integer sourceAncillaryChannelNumber;

    private ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsAncillarySourceSettings() {}
    /**
     * @return Specifies the number (1 to 4) of the captions channel you want to extract from the ancillary captions. If you plan to convert the ancillary captions to another format, complete this field. If you plan to choose Embedded as the captions destination in the output (to pass through all the channels in the ancillary captions), leave this field blank because MediaLive ignores the field.
     * 
     */
    public Optional sourceAncillaryChannelNumber() {
        return Optional.ofNullable(this.sourceAncillaryChannelNumber);
    }

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

    public static Builder builder(ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsAncillarySourceSettings defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Integer sourceAncillaryChannelNumber;
        public Builder() {}
        public Builder(ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsAncillarySourceSettings defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.sourceAncillaryChannelNumber = defaults.sourceAncillaryChannelNumber;
        }

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

            this.sourceAncillaryChannelNumber = sourceAncillaryChannelNumber;
            return this;
        }
        public ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsAncillarySourceSettings build() {
            final var _resultValue = new ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsAncillarySourceSettings();
            _resultValue.sourceAncillaryChannelNumber = sourceAncillaryChannelNumber;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy