Module Values.UpdateNetworkRequestSource

Updates the properties of an existing Wickr network, such as its name or encryption key configuration.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network to update.

    *)
  2. networkName : GenericString.t;
    (*

    The new name for the network. Must be between 1 and 20 characters.

    *)
  3. clientToken : ClientToken.t option;
    (*

    A unique identifier for this request to ensure idempotency.

    *)
  4. encryptionKeyArn : GenericString.t option;
    (*

    The ARN of the Amazon Web Services KMS customer managed key to use for encrypting sensitive data in the network.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?encryptionKeyArn:??? -> networkId:NetworkId.t -> networkName:GenericString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NetworkId.t ]) 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