com.pulumi.aws.ivschat.Room 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.ivschat;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.ivschat.RoomArgs;
import com.pulumi.aws.ivschat.inputs.RoomState;
import com.pulumi.aws.ivschat.outputs.RoomMessageReviewHandler;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Resource for managing an AWS IVS (Interactive Video) Chat Room.
*
* ## Example Usage
*
* ### Basic Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* 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());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Using `pulumi import`, import IVS (Interactive Video) Chat Room using the ARN. For example:
*
* ```sh
* $ pulumi import aws:ivschat/room:Room example arn:aws:ivschat:us-west-2:326937407773:room/GoXEXyB4VwHb
* ```
*
*/
@ResourceType(type="aws:ivschat/room:Room")
public class Room extends com.pulumi.resources.CustomResource {
/**
* ARN of the Room.
*
*/
@Export(name="arn", refs={String.class}, tree="[0]")
private Output arn;
/**
* @return ARN of the Room.
*
*/
public Output arn() {
return this.arn;
}
/**
* List of Logging Configuration
* ARNs to attach to the room.
*
*/
@Export(name="loggingConfigurationIdentifiers", refs={List.class,String.class}, tree="[0,1]")
private Output* @Nullable */ List> loggingConfigurationIdentifiers;
/**
* @return List of Logging Configuration
* ARNs to attach to the room.
*
*/
public Output>> loggingConfigurationIdentifiers() {
return Codegen.optional(this.loggingConfigurationIdentifiers);
}
/**
* 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.
*
*/
@Export(name="maximumMessageLength", refs={Integer.class}, tree="[0]")
private Output maximumMessageLength;
/**
* @return 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.
*
*/
public Output maximumMessageLength() {
return this.maximumMessageLength;
}
/**
* Maximum number of messages per
* second that can be sent to the room (by all clients).
*
*/
@Export(name="maximumMessageRatePerSecond", refs={Integer.class}, tree="[0]")
private Output maximumMessageRatePerSecond;
/**
* @return Maximum number of messages per
* second that can be sent to the room (by all clients).
*
*/
public Output maximumMessageRatePerSecond() {
return this.maximumMessageRatePerSecond;
}
/**
* Configuration information for optional
* review of messages.
*
*/
@Export(name="messageReviewHandler", refs={RoomMessageReviewHandler.class}, tree="[0]")
private Output* @Nullable */ RoomMessageReviewHandler> messageReviewHandler;
/**
* @return Configuration information for optional
* review of messages.
*
*/
public Output> messageReviewHandler() {
return Codegen.optional(this.messageReviewHandler);
}
/**
* Room name.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Room name.
*
*/
public Output name() {
return this.name;
}
/**
* 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.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return 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.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
*
* @deprecated
* Please use `tags` instead.
*
*/
@Deprecated /* Please use `tags` instead. */
@Export(name="tagsAll", refs={Map.class,String.class}, tree="[0,1,1]")
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy