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

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

import com.pulumi.aws.medialive.inputs.ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsOutputRectangleArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs Empty = new ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs();

    /**
     * Optionally defines a region where TTML style captions will be displayed. See Caption Rectangle for more details.
     * 
     */
    @Import(name="outputRectangle")
    private @Nullable Output outputRectangle;

    /**
     * @return Optionally defines a region where TTML style captions will be displayed. See Caption Rectangle for more details.
     * 
     */
    public Optional> outputRectangle() {
        return Optional.ofNullable(this.outputRectangle);
    }

    /**
     * Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no “0x” prefix.
     * 
     */
    @Import(name="pageNumber")
    private @Nullable Output pageNumber;

    /**
     * @return Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no “0x” prefix.
     * 
     */
    public Optional> pageNumber() {
        return Optional.ofNullable(this.pageNumber);
    }

    private ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs() {}

    private ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs(ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs $) {
        this.outputRectangle = $.outputRectangle;
        this.pageNumber = $.pageNumber;
    }

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

    public static final class Builder {
        private ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs $;

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

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

        /**
         * @param outputRectangle Optionally defines a region where TTML style captions will be displayed. See Caption Rectangle for more details.
         * 
         * @return builder
         * 
         */
        public Builder outputRectangle(@Nullable Output outputRectangle) {
            $.outputRectangle = outputRectangle;
            return this;
        }

        /**
         * @param outputRectangle Optionally defines a region where TTML style captions will be displayed. See Caption Rectangle for more details.
         * 
         * @return builder
         * 
         */
        public Builder outputRectangle(ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsOutputRectangleArgs outputRectangle) {
            return outputRectangle(Output.of(outputRectangle));
        }

        /**
         * @param pageNumber Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no “0x” prefix.
         * 
         * @return builder
         * 
         */
        public Builder pageNumber(@Nullable Output pageNumber) {
            $.pageNumber = pageNumber;
            return this;
        }

        /**
         * @param pageNumber Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no “0x” prefix.
         * 
         * @return builder
         * 
         */
        public Builder pageNumber(String pageNumber) {
            return pageNumber(Output.of(pageNumber));
        }

        public ChannelInputAttachmentInputSettingsCaptionSelectorSelectorSettingsTeletextSourceSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy