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

com.pulumi.aws.medialive.inputs.ChannelInputAttachmentInputSettingsVideoSelectorArgs Maven / Gradle / Ivy

// *** 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.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 ChannelInputAttachmentInputSettingsVideoSelectorArgs extends com.pulumi.resources.ResourceArgs {

    public static final ChannelInputAttachmentInputSettingsVideoSelectorArgs Empty = new ChannelInputAttachmentInputSettingsVideoSelectorArgs();

    @Import(name="colorSpace")
    private @Nullable Output colorSpace;

    public Optional> colorSpace() {
        return Optional.ofNullable(this.colorSpace);
    }

    @Import(name="colorSpaceUsage")
    private @Nullable Output colorSpaceUsage;

    public Optional> colorSpaceUsage() {
        return Optional.ofNullable(this.colorSpaceUsage);
    }

    private ChannelInputAttachmentInputSettingsVideoSelectorArgs() {}

    private ChannelInputAttachmentInputSettingsVideoSelectorArgs(ChannelInputAttachmentInputSettingsVideoSelectorArgs $) {
        this.colorSpace = $.colorSpace;
        this.colorSpaceUsage = $.colorSpaceUsage;
    }

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

    public static final class Builder {
        private ChannelInputAttachmentInputSettingsVideoSelectorArgs $;

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

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

        public Builder colorSpace(@Nullable Output colorSpace) {
            $.colorSpace = colorSpace;
            return this;
        }

        public Builder colorSpace(String colorSpace) {
            return colorSpace(Output.of(colorSpace));
        }

        public Builder colorSpaceUsage(@Nullable Output colorSpaceUsage) {
            $.colorSpaceUsage = colorSpaceUsage;
            return this;
        }

        public Builder colorSpaceUsage(String colorSpaceUsage) {
            return colorSpaceUsage(Output.of(colorSpaceUsage));
        }

        public ChannelInputAttachmentInputSettingsVideoSelectorArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy