Module Values.UpdateConnectionRequestSource

Updates the Direct Connect connection configuration. You can update the following parameters for a connection: The connection name The connection's MAC Security (MACsec) encryption mode.

Sourcetype nonrec t = {
  1. connectionId : ConnectionId.t;
    (*

    The ID of the connection. You can use DescribeConnections to retrieve the connection ID.

    *)
  2. connectionName : ConnectionName.t option;
    (*

    The name of the connection.

    *)
  3. encryptionMode : EncryptionMode.t option;
    (*

    The connection MAC Security (MACsec) encryption mode. The valid values are no_encrypt, should_encrypt, and must_encrypt.

    *)
}
Sourceval context_ : string
Sourceval make : ?connectionName:??? -> ?encryptionMode:??? -> connectionId:ConnectionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConnectionId.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