Room

class Room : KotlinCustomResource

Resource for managing an AWS IVS (Interactive Video) Chat Room.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.ivschat.Room("example", {name: "tf-room"});
import pulumi
import pulumi_aws as aws
example = aws.ivschat.Room("example", name="tf-room")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.IvsChat.Room("example", new()
{
Name = "tf-room",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ivschat"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ivschat.NewRoom(ctx, "example", &ivschat.RoomArgs{
Name: pulumi.String("tf-room"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ivschat.Room;
import com.pulumi.aws.ivschat.RoomArgs;
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 Room("example", RoomArgs.builder()
.name("tf-room")
.build());
}
}
resources:
example:
type: aws:ivschat:Room
properties:
name: tf-room

Import

Using pulumi import, import IVS (Interactive Video) Chat Room using the ARN. For example:

$ pulumi import aws:ivschat/room:Room example arn:aws:ivschat:us-west-2:326937407773:room/GoXEXyB4VwHb

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the Room.

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

List of Logging Configuration ARNs to attach to the room.

Link copied to clipboard

Maximum number of characters in a single message. Messages are expected to be UTF-8 encoded and this limit applies specifically to rune/code-point count, not number of bytes.

Link copied to clipboard

Maximum number of messages per second that can be sent to the room (by all clients).

Link copied to clipboard

Configuration information for optional review of messages.

Link copied to clipboard
val name: Output<String>

Room name.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
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 urn: Output<String>