Module Values.NetworkSource

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;
    (*

    Attributes of the blockchain framework for 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. frameworkAttributes : NetworkFrameworkAttributes.t option;
    (*

    Attributes of the blockchain framework that the network uses.

    *)
  7. vpcEndpointServiceName : String_.t option;
    (*

    The VPC endpoint service name of the VPC endpoint service of the network. Members use the VPC endpoint service name to create a VPC endpoint to access network resources.

    *)
  8. votingPolicy : VotingPolicy.t option;
    (*

    The voting rules that the network uses to decide if a proposal is accepted.

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

    The current status of the network.

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

    The date and time that the network was created.

    *)
  11. tags : OutputTagMap.t option;
    (*

    Tags assigned to the network. Each tag consists of a key and optional value. For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.

    *)
  12. 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:??? -> ?frameworkAttributes:??? -> ?vpcEndpointServiceName:??? -> ?votingPolicy:??? -> ?status:??? -> ?creationDate:??? -> ?tags:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ResourceIdString.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of ThresholdPercentageInt.t | `String of String_.t ]) list ]) list | `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