Module Values.NetworkSource

Represents a Wickr network with all its configuration and status information.

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

    The unique identifier of the network.

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

    The name of the network.

    *)
  3. accessLevel : AccessLevel.t option;
    (*

    The access level of the network (STANDARD or PREMIUM), which determines available features and capabilities.

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

    The Amazon Web Services account ID that owns the network.

    *)
  5. networkArn : GenericString.t option;
    (*

    The Amazon Resource Name (ARN) of the network.

    *)
  6. standing : Integer.t option;
    (*

    The current standing or status of the network.

    *)
  7. freeTrialExpiration : GenericString.t option;
    (*

    The expiration date and time for the network's free trial period, if applicable.

    *)
  8. migrationState : Integer.t option;
    (*

    The SSO redirect URI migration state, managed by the SSO redirect migration wizard. Values: 0 (not started), 1 (in progress), or 2 (completed).

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

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

    *)
}
Sourceval make : ?networkId:??? -> ?networkName:??? -> ?accessLevel:??? -> ?awsAccountId:??? -> ?networkArn:??? -> ?standing:??? -> ?freeTrialExpiration:??? -> ?migrationState:??? -> ?encryptionKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `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