Channel

class Channel : KotlinCustomResource

Resource for managing an AWS IVS (Interactive Video) Channel.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ivs.Channel;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Channel("example");
}
}

Import

IVS (Interactive Video) Channel can be imported using the ARN, e.g.,

$ pulumi import aws:ivs/channel:Channel example arn:aws:ivs:us-west-2:326937407773:channel/0Y1lcs4U7jk5

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the Channel.

Link copied to clipboard
val authorized: Output<Boolean>

If true, channel is private (enabled for playback authorization).

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ingestEndpoint: Output<String>

Channel ingest endpoint, part of the definition of an ingest server, used when setting up streaming software.

Link copied to clipboard
val latencyMode: Output<String>

Channel latency mode. Valid values: NORMAL, LOW.

Link copied to clipboard
val name: Output<String>

Channel name.

Link copied to clipboard
val playbackUrl: Output<String>

Channel playback URL.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Recording configuration ARN.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val type: Output<String>

Channel type, which determines the allowable resolution and bitrate. Valid values: STANDARD, BASIC.

Link copied to clipboard
val urn: Output<String>