com.pulumi.azurenative.media.inputs.LiveEventOutputTranscriptionTrackArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.media.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Describes a transcription track in the output of a live event, generated using speech-to-text transcription. This property is reserved for future use, any value set on this property will be ignored.
*
*/
public final class LiveEventOutputTranscriptionTrackArgs extends com.pulumi.resources.ResourceArgs {
public static final LiveEventOutputTranscriptionTrackArgs Empty = new LiveEventOutputTranscriptionTrackArgs();
/**
* The output track name. This property is reserved for future use, any value set on this property will be ignored.
*
*/
@Import(name="trackName", required=true)
private Output trackName;
/**
* @return The output track name. This property is reserved for future use, any value set on this property will be ignored.
*
*/
public Output trackName() {
return this.trackName;
}
private LiveEventOutputTranscriptionTrackArgs() {}
private LiveEventOutputTranscriptionTrackArgs(LiveEventOutputTranscriptionTrackArgs $) {
this.trackName = $.trackName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LiveEventOutputTranscriptionTrackArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private LiveEventOutputTranscriptionTrackArgs $;
public Builder() {
$ = new LiveEventOutputTranscriptionTrackArgs();
}
public Builder(LiveEventOutputTranscriptionTrackArgs defaults) {
$ = new LiveEventOutputTranscriptionTrackArgs(Objects.requireNonNull(defaults));
}
/**
* @param trackName The output track name. This property is reserved for future use, any value set on this property will be ignored.
*
* @return builder
*
*/
public Builder trackName(Output trackName) {
$.trackName = trackName;
return this;
}
/**
* @param trackName The output track name. This property is reserved for future use, any value set on this property will be ignored.
*
* @return builder
*
*/
public Builder trackName(String trackName) {
return trackName(Output.of(trackName));
}
public LiveEventOutputTranscriptionTrackArgs build() {
if ($.trackName == null) {
throw new MissingRequiredPropertyException("LiveEventOutputTranscriptionTrackArgs", "trackName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy