/* 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. */ /** * The AWS::Timestream::Database resource creates a Timestream database. */ export interface AwsTimestreamDatabase { Arn?: string; /** * The name for the database. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the database name. */ DatabaseName?: string; /** * The KMS key for the database. If the KMS key is not specified, the database will be encrypted with a Timestream managed KMS key located in your account. */ KmsKeyId?: string; /** * An array of key-value pairs to apply to this resource. * * @maxItems 200 */ Tags?: Tag[]; } /** * You can use the Resource Tags property to apply tags to resources, which can help you identify and categorize those resources. */ export interface Tag { Key?: string; Value?: string; }