
com.pulumi.aws.medialive.outputs.ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate 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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate {
private @Nullable String passwordParam;
private String uri;
private @Nullable String username;
private ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate() {}
public Optional passwordParam() {
return Optional.ofNullable(this.passwordParam);
}
public String uri() {
return this.uri;
}
public Optional username() {
return Optional.ofNullable(this.username);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String passwordParam;
private String uri;
private @Nullable String username;
public Builder() {}
public Builder(ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate defaults) {
Objects.requireNonNull(defaults);
this.passwordParam = defaults.passwordParam;
this.uri = defaults.uri;
this.username = defaults.username;
}
@CustomType.Setter
public Builder passwordParam(@Nullable String passwordParam) {
this.passwordParam = passwordParam;
return this;
}
@CustomType.Setter
public Builder uri(String uri) {
if (uri == null) {
throw new MissingRequiredPropertyException("ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate", "uri");
}
this.uri = uri;
return this;
}
@CustomType.Setter
public Builder username(@Nullable String username) {
this.username = username;
return this;
}
public ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate build() {
final var _resultValue = new ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate();
_resultValue.passwordParam = passwordParam;
_resultValue.uri = uri;
_resultValue.username = username;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy