import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface GlobalClusterProperties { StorageEncrypted?: Value; EngineVersion?: Value; SourceDBClusterIdentifier?: Value; DeletionProtection?: Value; GlobalClusterIdentifier?: Value; Engine?: Value; } export default class GlobalCluster extends ResourceBase { constructor(properties?: GlobalClusterProperties); }