123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832 |
- import {Request} from '../lib/request';
- import {Response} from '../lib/response';
- import {AWSError} from '../lib/error';
- import {Service} from '../lib/service';
- import {ServiceConfigurationOptions} from '../lib/service';
- import {ConfigBase as Config} from '../lib/config-base';
- interface Blob {}
- declare class Ivschat extends Service {
- /**
- * Constructs a service object. This object has one method for each API operation.
- */
- constructor(options?: Ivschat.Types.ClientConfiguration)
- config: Config & Ivschat.Types.ClientConfiguration;
- /**
- * Creates an encrypted token that is used by a chat participant to establish an individual WebSocket chat connection to a room. When the token is used to connect to chat, the connection is valid for the session duration specified in the request. The token becomes invalid at the token-expiration timestamp included in the response. Use the capabilities field to permit an end user to send messages or moderate a room. The attributes field securely attaches structured data to the chat session; the data is included within each message sent by the end user and received by other participants in the room. Common use cases for attributes include passing end-user profile data like an icon, display name, colors, badges, and other display features. Encryption keys are owned by Amazon IVS Chat and never used directly by your application.
- */
- createChatToken(params: Ivschat.Types.CreateChatTokenRequest, callback?: (err: AWSError, data: Ivschat.Types.CreateChatTokenResponse) => void): Request<Ivschat.Types.CreateChatTokenResponse, AWSError>;
- /**
- * Creates an encrypted token that is used by a chat participant to establish an individual WebSocket chat connection to a room. When the token is used to connect to chat, the connection is valid for the session duration specified in the request. The token becomes invalid at the token-expiration timestamp included in the response. Use the capabilities field to permit an end user to send messages or moderate a room. The attributes field securely attaches structured data to the chat session; the data is included within each message sent by the end user and received by other participants in the room. Common use cases for attributes include passing end-user profile data like an icon, display name, colors, badges, and other display features. Encryption keys are owned by Amazon IVS Chat and never used directly by your application.
- */
- createChatToken(callback?: (err: AWSError, data: Ivschat.Types.CreateChatTokenResponse) => void): Request<Ivschat.Types.CreateChatTokenResponse, AWSError>;
- /**
- * Creates a logging configuration that allows clients to store and record sent messages.
- */
- createLoggingConfiguration(params: Ivschat.Types.CreateLoggingConfigurationRequest, callback?: (err: AWSError, data: Ivschat.Types.CreateLoggingConfigurationResponse) => void): Request<Ivschat.Types.CreateLoggingConfigurationResponse, AWSError>;
- /**
- * Creates a logging configuration that allows clients to store and record sent messages.
- */
- createLoggingConfiguration(callback?: (err: AWSError, data: Ivschat.Types.CreateLoggingConfigurationResponse) => void): Request<Ivschat.Types.CreateLoggingConfigurationResponse, AWSError>;
- /**
- * Creates a room that allows clients to connect and pass messages.
- */
- createRoom(params: Ivschat.Types.CreateRoomRequest, callback?: (err: AWSError, data: Ivschat.Types.CreateRoomResponse) => void): Request<Ivschat.Types.CreateRoomResponse, AWSError>;
- /**
- * Creates a room that allows clients to connect and pass messages.
- */
- createRoom(callback?: (err: AWSError, data: Ivschat.Types.CreateRoomResponse) => void): Request<Ivschat.Types.CreateRoomResponse, AWSError>;
- /**
- * Deletes the specified logging configuration.
- */
- deleteLoggingConfiguration(params: Ivschat.Types.DeleteLoggingConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- * Deletes the specified logging configuration.
- */
- deleteLoggingConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- * Sends an event to a specific room which directs clients to delete a specific message; that is, unrender it from view and delete it from the client’s chat history. This event’s EventName is aws:DELETE_MESSAGE. This replicates the DeleteMessage WebSocket operation in the Amazon IVS Chat Messaging API.
- */
- deleteMessage(params: Ivschat.Types.DeleteMessageRequest, callback?: (err: AWSError, data: Ivschat.Types.DeleteMessageResponse) => void): Request<Ivschat.Types.DeleteMessageResponse, AWSError>;
- /**
- * Sends an event to a specific room which directs clients to delete a specific message; that is, unrender it from view and delete it from the client’s chat history. This event’s EventName is aws:DELETE_MESSAGE. This replicates the DeleteMessage WebSocket operation in the Amazon IVS Chat Messaging API.
- */
- deleteMessage(callback?: (err: AWSError, data: Ivschat.Types.DeleteMessageResponse) => void): Request<Ivschat.Types.DeleteMessageResponse, AWSError>;
- /**
- * Deletes the specified room.
- */
- deleteRoom(params: Ivschat.Types.DeleteRoomRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- * Deletes the specified room.
- */
- deleteRoom(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- * Disconnects all connections using a specified user ID from a room. This replicates the DisconnectUser WebSocket operation in the Amazon IVS Chat Messaging API.
- */
- disconnectUser(params: Ivschat.Types.DisconnectUserRequest, callback?: (err: AWSError, data: Ivschat.Types.DisconnectUserResponse) => void): Request<Ivschat.Types.DisconnectUserResponse, AWSError>;
- /**
- * Disconnects all connections using a specified user ID from a room. This replicates the DisconnectUser WebSocket operation in the Amazon IVS Chat Messaging API.
- */
- disconnectUser(callback?: (err: AWSError, data: Ivschat.Types.DisconnectUserResponse) => void): Request<Ivschat.Types.DisconnectUserResponse, AWSError>;
- /**
- * Gets the specified logging configuration.
- */
- getLoggingConfiguration(params: Ivschat.Types.GetLoggingConfigurationRequest, callback?: (err: AWSError, data: Ivschat.Types.GetLoggingConfigurationResponse) => void): Request<Ivschat.Types.GetLoggingConfigurationResponse, AWSError>;
- /**
- * Gets the specified logging configuration.
- */
- getLoggingConfiguration(callback?: (err: AWSError, data: Ivschat.Types.GetLoggingConfigurationResponse) => void): Request<Ivschat.Types.GetLoggingConfigurationResponse, AWSError>;
- /**
- * Gets the specified room.
- */
- getRoom(params: Ivschat.Types.GetRoomRequest, callback?: (err: AWSError, data: Ivschat.Types.GetRoomResponse) => void): Request<Ivschat.Types.GetRoomResponse, AWSError>;
- /**
- * Gets the specified room.
- */
- getRoom(callback?: (err: AWSError, data: Ivschat.Types.GetRoomResponse) => void): Request<Ivschat.Types.GetRoomResponse, AWSError>;
- /**
- * Gets summary information about all your logging configurations in the AWS region where the API request is processed.
- */
- listLoggingConfigurations(params: Ivschat.Types.ListLoggingConfigurationsRequest, callback?: (err: AWSError, data: Ivschat.Types.ListLoggingConfigurationsResponse) => void): Request<Ivschat.Types.ListLoggingConfigurationsResponse, AWSError>;
- /**
- * Gets summary information about all your logging configurations in the AWS region where the API request is processed.
- */
- listLoggingConfigurations(callback?: (err: AWSError, data: Ivschat.Types.ListLoggingConfigurationsResponse) => void): Request<Ivschat.Types.ListLoggingConfigurationsResponse, AWSError>;
- /**
- * Gets summary information about all your rooms in the AWS region where the API request is processed. Results are sorted in descending order of updateTime.
- */
- listRooms(params: Ivschat.Types.ListRoomsRequest, callback?: (err: AWSError, data: Ivschat.Types.ListRoomsResponse) => void): Request<Ivschat.Types.ListRoomsResponse, AWSError>;
- /**
- * Gets summary information about all your rooms in the AWS region where the API request is processed. Results are sorted in descending order of updateTime.
- */
- listRooms(callback?: (err: AWSError, data: Ivschat.Types.ListRoomsResponse) => void): Request<Ivschat.Types.ListRoomsResponse, AWSError>;
- /**
- * Gets information about AWS tags for the specified ARN.
- */
- listTagsForResource(params: Ivschat.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Ivschat.Types.ListTagsForResourceResponse) => void): Request<Ivschat.Types.ListTagsForResourceResponse, AWSError>;
- /**
- * Gets information about AWS tags for the specified ARN.
- */
- listTagsForResource(callback?: (err: AWSError, data: Ivschat.Types.ListTagsForResourceResponse) => void): Request<Ivschat.Types.ListTagsForResourceResponse, AWSError>;
- /**
- * Sends an event to a room. Use this within your application’s business logic to send events to clients of a room; e.g., to notify clients to change the way the chat UI is rendered.
- */
- sendEvent(params: Ivschat.Types.SendEventRequest, callback?: (err: AWSError, data: Ivschat.Types.SendEventResponse) => void): Request<Ivschat.Types.SendEventResponse, AWSError>;
- /**
- * Sends an event to a room. Use this within your application’s business logic to send events to clients of a room; e.g., to notify clients to change the way the chat UI is rendered.
- */
- sendEvent(callback?: (err: AWSError, data: Ivschat.Types.SendEventResponse) => void): Request<Ivschat.Types.SendEventResponse, AWSError>;
- /**
- * Adds or updates tags for the AWS resource with the specified ARN.
- */
- tagResource(params: Ivschat.Types.TagResourceRequest, callback?: (err: AWSError, data: Ivschat.Types.TagResourceResponse) => void): Request<Ivschat.Types.TagResourceResponse, AWSError>;
- /**
- * Adds or updates tags for the AWS resource with the specified ARN.
- */
- tagResource(callback?: (err: AWSError, data: Ivschat.Types.TagResourceResponse) => void): Request<Ivschat.Types.TagResourceResponse, AWSError>;
- /**
- * Removes tags from the resource with the specified ARN.
- */
- untagResource(params: Ivschat.Types.UntagResourceRequest, callback?: (err: AWSError, data: Ivschat.Types.UntagResourceResponse) => void): Request<Ivschat.Types.UntagResourceResponse, AWSError>;
- /**
- * Removes tags from the resource with the specified ARN.
- */
- untagResource(callback?: (err: AWSError, data: Ivschat.Types.UntagResourceResponse) => void): Request<Ivschat.Types.UntagResourceResponse, AWSError>;
- /**
- * Updates a specified logging configuration.
- */
- updateLoggingConfiguration(params: Ivschat.Types.UpdateLoggingConfigurationRequest, callback?: (err: AWSError, data: Ivschat.Types.UpdateLoggingConfigurationResponse) => void): Request<Ivschat.Types.UpdateLoggingConfigurationResponse, AWSError>;
- /**
- * Updates a specified logging configuration.
- */
- updateLoggingConfiguration(callback?: (err: AWSError, data: Ivschat.Types.UpdateLoggingConfigurationResponse) => void): Request<Ivschat.Types.UpdateLoggingConfigurationResponse, AWSError>;
- /**
- * Updates a room’s configuration.
- */
- updateRoom(params: Ivschat.Types.UpdateRoomRequest, callback?: (err: AWSError, data: Ivschat.Types.UpdateRoomResponse) => void): Request<Ivschat.Types.UpdateRoomResponse, AWSError>;
- /**
- * Updates a room’s configuration.
- */
- updateRoom(callback?: (err: AWSError, data: Ivschat.Types.UpdateRoomResponse) => void): Request<Ivschat.Types.UpdateRoomResponse, AWSError>;
- }
- declare namespace Ivschat {
- export type BucketName = string;
- export type ChatToken = string;
- export type ChatTokenAttributes = {[key: string]: String};
- export type ChatTokenCapabilities = ChatTokenCapability[];
- export type ChatTokenCapability = "SEND_MESSAGE"|"DISCONNECT_USER"|"DELETE_MESSAGE"|string;
- export interface CloudWatchLogsDestinationConfiguration {
- /**
- * Name of the Amazon Cloudwatch Logs destination where chat activity will be logged.
- */
- logGroupName: LogGroupName;
- }
- export interface CreateChatTokenRequest {
- /**
- * Application-provided attributes to encode into the token and attach to a chat session. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total.
- */
- attributes?: ChatTokenAttributes;
- /**
- * Set of capabilities that the user is allowed to perform in the room. Default: None (the capability to view messages is implicitly included in all requests).
- */
- capabilities?: ChatTokenCapabilities;
- /**
- * Identifier of the room that the client is trying to access. Currently this must be an ARN.
- */
- roomIdentifier: RoomIdentifier;
- /**
- * Session duration (in minutes), after which the session expires. Default: 60 (1 hour).
- */
- sessionDurationInMinutes?: SessionDurationInMinutes;
- /**
- * Application-provided ID that uniquely identifies the user associated with this token. This can be any UTF-8 encoded text.
- */
- userId: UserID;
- }
- export interface CreateChatTokenResponse {
- /**
- * Time after which an end user's session is no longer valid. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- sessionExpirationTime?: Time;
- /**
- * The issued client token, encrypted.
- */
- token?: ChatToken;
- /**
- * Time after which the token is no longer valid and cannot be used to connect to a room. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- tokenExpirationTime?: Time;
- }
- export interface CreateLoggingConfigurationRequest {
- /**
- * A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.
- */
- destinationConfiguration: DestinationConfiguration;
- /**
- * Logging-configuration name. The value does not need to be unique.
- */
- name?: LoggingConfigurationName;
- /**
- * Tags to attach to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is documented there.
- */
- tags?: Tags;
- }
- export interface CreateLoggingConfigurationResponse {
- /**
- * Logging-configuration ARN, assigned by the system.
- */
- arn?: LoggingConfigurationArn;
- /**
- * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * A complex type that contains a destination configuration for where chat content will be logged, from the request. There is only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.
- */
- destinationConfiguration?: DestinationConfiguration;
- /**
- * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the logging configuration.
- */
- id?: LoggingConfigurationID;
- /**
- * Logging-configuration name, from the request (if specified).
- */
- name?: LoggingConfigurationName;
- /**
- * The state of the logging configuration. When the state is ACTIVE, the configuration is ready to log chat content.
- */
- state?: CreateLoggingConfigurationState;
- /**
- * Tags attached to the resource, from the request (if specified). Array of maps, each of the form string:string (key:value).
- */
- tags?: Tags;
- /**
- * Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export type CreateLoggingConfigurationState = "ACTIVE"|string;
- export interface CreateRoomRequest {
- /**
- * Array of logging-configuration identifiers attached to the room.
- */
- loggingConfigurationIdentifiers?: LoggingConfigurationIdentifierList;
- /**
- * 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. Default: 500.
- */
- maximumMessageLength?: RoomMaxMessageLength;
- /**
- * Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.
- */
- maximumMessageRatePerSecond?: RoomMaxMessageRatePerSecond;
- /**
- * Configuration information for optional review of messages.
- */
- messageReviewHandler?: MessageReviewHandler;
- /**
- * Room name. The value does not need to be unique.
- */
- name?: RoomName;
- /**
- * Tags to attach to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
- */
- tags?: Tags;
- }
- export interface CreateRoomResponse {
- /**
- * Room ARN, assigned by the system.
- */
- arn?: RoomArn;
- /**
- * Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- */
- id?: RoomID;
- /**
- * Array of logging configurations attached to the room, from the request (if specified).
- */
- loggingConfigurationIdentifiers?: LoggingConfigurationIdentifierList;
- /**
- * Maximum number of characters in a single message, from the request (if specified).
- */
- maximumMessageLength?: RoomMaxMessageLength;
- /**
- * Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).
- */
- maximumMessageRatePerSecond?: RoomMaxMessageRatePerSecond;
- /**
- * Configuration information for optional review of messages.
- */
- messageReviewHandler?: MessageReviewHandler;
- /**
- * Room name, from the request (if specified).
- */
- name?: RoomName;
- /**
- * Tags attached to the resource, from the request (if specified).
- */
- tags?: Tags;
- /**
- * Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export interface DeleteLoggingConfigurationRequest {
- /**
- * Identifier of the logging configuration to be deleted.
- */
- identifier: LoggingConfigurationIdentifier;
- }
- export interface DeleteMessageRequest {
- /**
- * ID of the message to be deleted. This is the Id field in the received message (see Message (Subscribe) in the Chat Messaging API).
- */
- id: MessageID;
- /**
- * Reason for deleting the message.
- */
- reason?: Reason;
- /**
- * Identifier of the room where the message should be deleted. Currently this must be an ARN.
- */
- roomIdentifier: RoomIdentifier;
- }
- export interface DeleteMessageResponse {
- /**
- * Operation identifier, generated by Amazon IVS Chat.
- */
- id?: ID;
- }
- export interface DeleteRoomRequest {
- /**
- * Identifier of the room to be deleted. Currently this must be an ARN.
- */
- identifier: RoomIdentifier;
- }
- export type DeliveryStreamName = string;
- export interface DestinationConfiguration {
- /**
- * An Amazon CloudWatch Logs destination configuration where chat activity will be logged.
- */
- cloudWatchLogs?: CloudWatchLogsDestinationConfiguration;
- /**
- * An Amazon Kinesis Data Firehose destination configuration where chat activity will be logged.
- */
- firehose?: FirehoseDestinationConfiguration;
- /**
- * An Amazon S3 destination configuration where chat activity will be logged.
- */
- s3?: S3DestinationConfiguration;
- }
- export interface DisconnectUserRequest {
- /**
- * Reason for disconnecting the user.
- */
- reason?: Reason;
- /**
- * Identifier of the room from which the user's clients should be disconnected. Currently this must be an ARN.
- */
- roomIdentifier: RoomIdentifier;
- /**
- * ID of the user (connection) to disconnect from the room.
- */
- userId: UserID;
- }
- export interface DisconnectUserResponse {
- }
- export type EventAttributes = {[key: string]: String};
- export type EventName = string;
- export type FallbackResult = "ALLOW"|"DENY"|string;
- export interface FirehoseDestinationConfiguration {
- /**
- * Name of the Amazon Kinesis Firehose delivery stream where chat activity will be logged.
- */
- deliveryStreamName: DeliveryStreamName;
- }
- export interface GetLoggingConfigurationRequest {
- /**
- * Identifier of the logging configuration to be retrieved.
- */
- identifier: LoggingConfigurationIdentifier;
- }
- export interface GetLoggingConfigurationResponse {
- /**
- * Logging-configuration ARN, from the request (if identifier was an ARN).
- */
- arn?: LoggingConfigurationArn;
- /**
- * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * A complex type that contains a destination configuration for where chat content will be logged. There is only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.
- */
- destinationConfiguration?: DestinationConfiguration;
- /**
- * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the logging configuration.
- */
- id?: LoggingConfigurationID;
- /**
- * Logging-configuration name. This value does not need to be unique.
- */
- name?: LoggingConfigurationName;
- /**
- * The state of the logging configuration. When the state is ACTIVE, the configuration is ready to log chat content.
- */
- state?: LoggingConfigurationState;
- /**
- * Tags attached to the resource. Array of maps, each of the form string:string (key:value).
- */
- tags?: Tags;
- /**
- * Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export interface GetRoomRequest {
- /**
- * Identifier of the room for which the configuration is to be retrieved. Currently this must be an ARN.
- */
- identifier: RoomIdentifier;
- }
- export interface GetRoomResponse {
- /**
- * Room ARN, from the request (if identifier was an ARN).
- */
- arn?: RoomArn;
- /**
- * Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- */
- id?: RoomID;
- /**
- * Array of logging configurations attached to the room.
- */
- loggingConfigurationIdentifiers?: LoggingConfigurationIdentifierList;
- /**
- * 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. Default: 500.
- */
- maximumMessageLength?: RoomMaxMessageLength;
- /**
- * Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.
- */
- maximumMessageRatePerSecond?: RoomMaxMessageRatePerSecond;
- /**
- * Configuration information for optional review of messages.
- */
- messageReviewHandler?: MessageReviewHandler;
- /**
- * Room name. The value does not need to be unique.
- */
- name?: RoomName;
- /**
- * Tags attached to the resource. Array of maps, each of the form string:string (key:value).
- */
- tags?: Tags;
- /**
- * Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export type ID = string;
- export type LambdaArn = string;
- export interface ListLoggingConfigurationsRequest {
- /**
- * Maximum number of logging configurations to return. Default: 50.
- */
- maxResults?: MaxLoggingConfigurationResults;
- /**
- * The first logging configurations to retrieve. This is used for pagination; see the nextToken response field.
- */
- nextToken?: PaginationToken;
- }
- export interface ListLoggingConfigurationsResponse {
- /**
- * List of the matching logging configurations (summary information only). There is only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.
- */
- loggingConfigurations: LoggingConfigurationList;
- /**
- * If there are more logging configurations than maxResults, use nextToken in the request to get the next set.
- */
- nextToken?: PaginationToken;
- }
- export interface ListRoomsRequest {
- /**
- * Logging-configuration identifier.
- */
- loggingConfigurationIdentifier?: LoggingConfigurationIdentifier;
- /**
- * Maximum number of rooms to return. Default: 50.
- */
- maxResults?: MaxRoomResults;
- /**
- * Filters the list to match the specified message review handler URI.
- */
- messageReviewHandlerUri?: LambdaArn;
- /**
- * Filters the list to match the specified room name.
- */
- name?: RoomName;
- /**
- * The first room to retrieve. This is used for pagination; see the nextToken response field.
- */
- nextToken?: PaginationToken;
- }
- export interface ListRoomsResponse {
- /**
- * If there are more rooms than maxResults, use nextToken in the request to get the next set.
- */
- nextToken?: PaginationToken;
- /**
- * List of the matching rooms (summary information only).
- */
- rooms: RoomList;
- }
- export interface ListTagsForResourceRequest {
- /**
- * The ARN of the resource to be retrieved. The ARN must be URL-encoded.
- */
- resourceArn: ResourceArn;
- }
- export interface ListTagsForResourceResponse {
- /**
- * Tags attached to the resource. Array of maps, each of the form string:string (key:value).
- */
- tags: Tags;
- }
- export type LogGroupName = string;
- export type LoggingConfigurationArn = string;
- export type LoggingConfigurationID = string;
- export type LoggingConfigurationIdentifier = string;
- export type LoggingConfigurationIdentifierList = LoggingConfigurationIdentifier[];
- export type LoggingConfigurationList = LoggingConfigurationSummary[];
- export type LoggingConfigurationName = string;
- export type LoggingConfigurationState = "CREATING"|"CREATE_FAILED"|"DELETING"|"DELETE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"ACTIVE"|string;
- export interface LoggingConfigurationSummary {
- /**
- * Logging-configuration ARN.
- */
- arn?: LoggingConfigurationArn;
- /**
- * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * A complex type that contains a destination configuration for where chat content will be logged.
- */
- destinationConfiguration?: DestinationConfiguration;
- /**
- * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- */
- id?: LoggingConfigurationID;
- /**
- * Logging-configuration name. The value does not need to be unique.
- */
- name?: LoggingConfigurationName;
- /**
- * The state of the logging configuration. When this is ACTIVE, the configuration is ready for logging chat content.
- */
- state?: LoggingConfigurationState;
- /**
- * Tags to attach to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is documented there.
- */
- tags?: Tags;
- /**
- * Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export type MaxLoggingConfigurationResults = number;
- export type MaxRoomResults = number;
- export type MessageID = string;
- export interface MessageReviewHandler {
- /**
- * Specifies the fallback behavior (whether the message is allowed or denied) if the handler does not return a valid response, encounters an error, or times out. (For the timeout period, see Service Quotas.) If allowed, the message is delivered with returned content to all users connected to the room. If denied, the message is not delivered to any user. Default: ALLOW.
- */
- fallbackResult?: FallbackResult;
- /**
- * Identifier of the message review handler. Currently this must be an ARN of a lambda function.
- */
- uri?: LambdaArn;
- }
- export type PaginationToken = string;
- export type Reason = string;
- export type ResourceArn = string;
- export type RoomArn = string;
- export type RoomID = string;
- export type RoomIdentifier = string;
- export type RoomList = RoomSummary[];
- export type RoomMaxMessageLength = number;
- export type RoomMaxMessageRatePerSecond = number;
- export type RoomName = string;
- export interface RoomSummary {
- /**
- * Room ARN.
- */
- arn?: RoomArn;
- /**
- * Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- */
- id?: RoomID;
- /**
- * List of logging-configuration identifiers attached to the room.
- */
- loggingConfigurationIdentifiers?: LoggingConfigurationIdentifierList;
- /**
- * Configuration information for optional review of messages.
- */
- messageReviewHandler?: MessageReviewHandler;
- /**
- * Room name. The value does not need to be unique.
- */
- name?: RoomName;
- /**
- * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
- */
- tags?: Tags;
- /**
- * Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export interface S3DestinationConfiguration {
- /**
- * Name of the Amazon S3 bucket where chat activity will be logged.
- */
- bucketName: BucketName;
- }
- export interface SendEventRequest {
- /**
- * Application-defined metadata to attach to the event sent to clients. The maximum length of the metadata is 1 KB total.
- */
- attributes?: EventAttributes;
- /**
- * Application-defined name of the event to send to clients.
- */
- eventName: EventName;
- /**
- * Identifier of the room to which the event will be sent. Currently this must be an ARN.
- */
- roomIdentifier: RoomIdentifier;
- }
- export interface SendEventResponse {
- /**
- * An identifier generated by Amazon IVS Chat. This identifier must be used in subsequent operations for this message, such as DeleteMessage.
- */
- id?: ID;
- }
- export type SessionDurationInMinutes = number;
- export type String = string;
- export type TagKey = string;
- export type TagKeyList = TagKey[];
- export interface TagResourceRequest {
- /**
- * The ARN of the resource to be tagged. The ARN must be URL-encoded.
- */
- resourceArn: ResourceArn;
- /**
- * Array of tags to be added or updated. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
- */
- tags: Tags;
- }
- export interface TagResourceResponse {
- }
- export type TagValue = string;
- export type Tags = {[key: string]: TagValue};
- export type Time = Date;
- export interface UntagResourceRequest {
- /**
- * The ARN of the resource to be untagged. The ARN must be URL-encoded.
- */
- resourceArn: ResourceArn;
- /**
- * Array of tags to be removed. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
- */
- tagKeys: TagKeyList;
- }
- export interface UntagResourceResponse {
- }
- export interface UpdateLoggingConfigurationRequest {
- /**
- * A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.
- */
- destinationConfiguration?: DestinationConfiguration;
- /**
- * Identifier of the logging configuration to be updated.
- */
- identifier: LoggingConfigurationIdentifier;
- /**
- * Logging-configuration name. The value does not need to be unique.
- */
- name?: LoggingConfigurationName;
- }
- export interface UpdateLoggingConfigurationResponse {
- /**
- * Logging-configuration ARN, from the request (if identifier was an ARN).
- */
- arn?: LoggingConfigurationArn;
- /**
- * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * A complex type that contains a destination configuration for where chat content will be logged, from the request. There is only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.
- */
- destinationConfiguration?: DestinationConfiguration;
- /**
- * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- */
- id?: LoggingConfigurationID;
- /**
- * Logging-configuration name, from the request (if specified).
- */
- name?: LoggingConfigurationName;
- /**
- * The state of the logging configuration. When the state is ACTIVE, the configuration is ready to log chat content.
- */
- state?: UpdateLoggingConfigurationState;
- /**
- * Tags attached to the resource. Array of maps, each of the form string:string (key:value).
- */
- tags?: Tags;
- /**
- * Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export type UpdateLoggingConfigurationState = "ACTIVE"|string;
- export interface UpdateRoomRequest {
- /**
- * Identifier of the room to be updated. Currently this must be an ARN.
- */
- identifier: RoomIdentifier;
- /**
- * Array of logging-configuration identifiers attached to the room.
- */
- loggingConfigurationIdentifiers?: LoggingConfigurationIdentifierList;
- /**
- * The 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. Default: 500.
- */
- maximumMessageLength?: RoomMaxMessageLength;
- /**
- * Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.
- */
- maximumMessageRatePerSecond?: RoomMaxMessageRatePerSecond;
- /**
- * Configuration information for optional review of messages. Specify an empty uri string to disassociate a message review handler from the specified room.
- */
- messageReviewHandler?: MessageReviewHandler;
- /**
- * Room name. The value does not need to be unique.
- */
- name?: RoomName;
- }
- export interface UpdateRoomResponse {
- /**
- * Room ARN, from the request (if identifier was an ARN).
- */
- arn?: RoomArn;
- /**
- * Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- createTime?: Time;
- /**
- * Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- */
- id?: RoomID;
- /**
- * Array of logging configurations attached to the room, from the request (if specified).
- */
- loggingConfigurationIdentifiers?: LoggingConfigurationIdentifierList;
- /**
- * Maximum number of characters in a single message, from the request (if specified).
- */
- maximumMessageLength?: RoomMaxMessageLength;
- /**
- * Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).
- */
- maximumMessageRatePerSecond?: RoomMaxMessageRatePerSecond;
- /**
- * Configuration information for optional review of messages.
- */
- messageReviewHandler?: MessageReviewHandler;
- /**
- * Room name, from the request (if specified).
- */
- name?: RoomName;
- /**
- * Tags attached to the resource. Array of maps, each of the form string:string (key:value).
- */
- tags?: Tags;
- /**
- * Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- */
- updateTime?: Time;
- }
- export type UserID = string;
- /**
- * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
- */
- export type apiVersion = "2020-07-14"|"latest"|string;
- export interface ClientApiVersions {
- /**
- * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
- */
- apiVersion?: apiVersion;
- }
- export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
- /**
- * Contains interfaces for use with the Ivschat client.
- */
- export import Types = Ivschat;
- }
- export = Ivschat;
|