com.pulumi.aws.medialive.outputs.ChannelDestinationMultiplexSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ChannelDestinationMultiplexSettings {
/**
* @return The ID of the Multiplex that the encoder is providing output to.
*
*/
private String multiplexId;
/**
* @return The program name of the Multiplex program that the encoder is providing output to.
*
*/
private String programName;
private ChannelDestinationMultiplexSettings() {}
/**
* @return The ID of the Multiplex that the encoder is providing output to.
*
*/
public String multiplexId() {
return this.multiplexId;
}
/**
* @return The program name of the Multiplex program that the encoder is providing output to.
*
*/
public String programName() {
return this.programName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ChannelDestinationMultiplexSettings defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String multiplexId;
private String programName;
public Builder() {}
public Builder(ChannelDestinationMultiplexSettings defaults) {
Objects.requireNonNull(defaults);
this.multiplexId = defaults.multiplexId;
this.programName = defaults.programName;
}
@CustomType.Setter
public Builder multiplexId(String multiplexId) {
if (multiplexId == null) {
throw new MissingRequiredPropertyException("ChannelDestinationMultiplexSettings", "multiplexId");
}
this.multiplexId = multiplexId;
return this;
}
@CustomType.Setter
public Builder programName(String programName) {
if (programName == null) {
throw new MissingRequiredPropertyException("ChannelDestinationMultiplexSettings", "programName");
}
this.programName = programName;
return this;
}
public ChannelDestinationMultiplexSettings build() {
final var _resultValue = new ChannelDestinationMultiplexSettings();
_resultValue.multiplexId = multiplexId;
_resultValue.programName = programName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy