Module Values.AwsDynamoDbTableReplicaSource

Information about a replica of a DynamoDB table.

Sourcetype nonrec t = {
  1. globalSecondaryIndexes : AwsDynamoDbTableReplicaGlobalSecondaryIndexList.t option;
    (*

    List of global secondary indexes for the replica.

    *)
  2. kmsMasterKeyId : NonEmptyString.t option;
    (*

    The identifier of the KMS key that will be used for KMS encryption for the replica.

    *)
  3. provisionedThroughputOverride : AwsDynamoDbTableProvisionedThroughputOverride.t option;
    (*

    Replica-specific configuration for the provisioned throughput.

    *)
  4. regionName : NonEmptyString.t option;
    (*

    The name of the Region where the replica is located.

    *)
  5. replicaStatus : NonEmptyString.t option;
    (*

    The current status of the replica. Valid values are as follows: ACTIVE CREATING CREATION_FAILED DELETING UPDATING

    *)
  6. replicaStatusDescription : NonEmptyString.t option;
    (*

    Detailed information about the replica status.

    *)
}
Sourceval make : ?globalSecondaryIndexes:??? -> ?kmsMasterKeyId:??? -> ?provisionedThroughputOverride:??? -> ?regionName:??? -> ?replicaStatus:??? -> ?replicaStatusDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t