/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource type definition for AWS::IVSChat::LoggingConfiguration. */ export interface AwsIvschatLoggingconfiguration { /** * LoggingConfiguration ARN is automatically generated on creation and assigned as the unique identifier. */ Arn?: string; /** * The system-generated ID of the logging configuration. */ Id?: string; DestinationConfiguration: DestinationConfiguration; /** * The name of the logging configuration. The value does not need to be unique. */ Name?: string; /** * The state of the logging configuration. When the state is ACTIVE, the configuration is ready to log chat content. */ State?: "CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATING_FAILED" | "ACTIVE"; /** * An array of key-value pairs to apply to this resource. */ Tags?: Tag[]; } /** * Destination configuration for IVS Chat logging. */ export interface DestinationConfiguration { CloudWatchLogs?: CloudWatchLogsDestinationConfiguration; Firehose?: FirehoseDestinationConfiguration; S3?: S3DestinationConfiguration; } /** * CloudWatch destination configuration for IVS Chat logging. */ export interface CloudWatchLogsDestinationConfiguration { /** * Name of the Amazon CloudWatch Logs log group where chat activity will be logged. */ LogGroupName: string; } /** * Kinesis Firehose destination configuration for IVS Chat logging. */ export interface FirehoseDestinationConfiguration { /** * Name of the Amazon Kinesis Firehose delivery stream where chat activity will be logged. */ DeliveryStreamName: string; } /** * S3 destination configuration for IVS Chat logging. */ export interface S3DestinationConfiguration { /** * Name of the Amazon S3 bucket where chat activity will be logged. */ BucketName: string; } /** * A key-value pair to associate with a resource. */ export interface Tag { /** * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */ Key: string; /** * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */ Value: string; }