import { _Replica, _UnmarshalledReplica } from './_Replica'; /** *

Represents the properties of a global table.

*/ export interface _GlobalTable { /** *

The global table name.

*/ GlobalTableName?: string; /** *

The regions where the global table has replicas.

*/ ReplicationGroup?: Array<_Replica> | Iterable<_Replica>; } export interface _UnmarshalledGlobalTable extends _GlobalTable { /** *

The regions where the global table has replicas.

*/ ReplicationGroup?: Array<_UnmarshalledReplica>; }