Module Values.CreatePrivateConnectionInputSource

Input for creating a new Private Connection.

Sourcetype nonrec t = {
  1. name : PrivateConnectionName.t;
    (*

    Unique name for this Private Connection within the account.

    *)
  2. mode : PrivateConnectionMode.t;
    (*

    Private Connection mode configuration.

    *)
  3. tags : Tags.t option;
    (*

    Tags to add to the Private Connection at creation time.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> name:PrivateConnectionName.t -> mode:PrivateConnectionMode.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of PrivateConnectionName.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of MaxIpv4AddressesPerEni.t | `List of [> `String of SubnetId.t ] list | `String of IpAddressOrDnsName.t ]) list ]) 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