Module Values.NetworkSummarySource

A summary of network configuration properties.

Sourcetype nonrec t = {
  1. id : ResourceIdString.t option;
    (*

    The unique identifier of the network.

    *)
  2. name : NameString.t option;
    (*

    The name of the network.

    *)
  3. description : DescriptionString.t option;
    (*

    An optional description of the network.

    *)
  4. framework : Framework.t option;
    (*

    The blockchain framework that the network uses.

    *)
  5. frameworkVersion : FrameworkVersionString.t option;
    (*

    The version of the blockchain framework that the network uses.

    *)
  6. status : NetworkStatus.t option;
    (*

    The current status of the network.

    *)
  7. creationDate : Timestamp.t option;
    (*

    The date and time that the network was created.

    *)
  8. arn : ArnString.t option;
    (*

    The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?framework:??? -> ?frameworkVersion:??? -> ?status:??? -> ?creationDate:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceIdString.t | `Timestamp of Timestamp.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