Module Values.UpdateReplicationGroupMemberActionSource

Represents a replica to be modified.

Sourcetype nonrec t = {
  1. regionName : RegionName.t;
    (*

    The Region where the replica exists.

    *)
  2. kMSMasterKeyId : KMSMasterKeyId.t option;
    (*

    The KMS key of the replica that should be used for KMS encryption. To specify a key, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB KMS key alias/aws/dynamodb.

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

    Replica-specific provisioned throughput. If not specified, uses the source table's provisioned throughput settings.

    *)
  4. onDemandThroughputOverride : OnDemandThroughputOverride.t option;
    (*

    Overrides the maximum on-demand throughput for the replica table.

    *)
  5. globalSecondaryIndexes : ReplicaGlobalSecondaryIndexList.t option;
    (*

    Replica-specific global secondary index settings.

    *)
  6. tableClassOverride : TableClass.t option;
    (*

    Replica-specific table class. If not specified, uses the source table's table class.

    *)
}
Sourceval context_ : string
Sourceval make : ?kMSMasterKeyId:??? -> ?provisionedThroughputOverride:??? -> ?onDemandThroughputOverride:??? -> ?globalSecondaryIndexes:??? -> ?tableClassOverride:??? -> regionName:RegionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of IndexName.t | `Structure of (string * [> `Long of PositiveLongObject.t ]) list ]) list ] list | `String of RegionName.t | `Structure of (string * [> `Long of PositiveLongObject.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