Module Values.ConnectorVpcLatticeEgressConfigSource

VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs. Requires a valid Resource Configuration with appropriate network access.

Sourcetype nonrec t = {
  1. resourceConfigurationArn : VpcLatticeResourceConfigurationArn.t;
    (*

    ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location. Must point to a valid Resource Configuration in the customer's VPC with appropriate network connectivity to the SFTP server.

    *)
  2. portNumber : SftpPort.t option;
    (*

    Port number for connecting to the SFTP server through VPC_LATTICE. Defaults to 22 if not specified. Must match the port on which the target SFTP server is listening.

    *)
}
Sourceval context_ : string
Sourceval make : ?portNumber:??? -> resourceConfigurationArn:VpcLatticeResourceConfigurationArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SftpPort.t | `String of VpcLatticeResourceConfigurationArn.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