import { _CreateReplicaAction, _UnmarshalledCreateReplicaAction } from './_CreateReplicaAction'; import { _DeleteReplicaAction, _UnmarshalledDeleteReplicaAction } from './_DeleteReplicaAction'; /** *
Represents one of the following:
A new replica to be added to an existing global table.
New parameters for an existing replica.
An existing replica to be removed from an existing global table.
The parameters required for creating a replica on an existing global table.
*/ Create?: _CreateReplicaAction; /** *The name of the existing replica to be removed.
*/ Delete?: _DeleteReplicaAction; } export interface _UnmarshalledReplicaUpdate extends _ReplicaUpdate { /** *The parameters required for creating a replica on an existing global table.
*/ Create?: _UnmarshalledCreateReplicaAction; /** *The name of the existing replica to be removed.
*/ Delete?: _UnmarshalledDeleteReplicaAction; }