Module Values.NetworkConfigSource

The network configuration for a notebook run in Amazon SageMaker Unified Studio.

Sourcetype nonrec t = {
  1. networkAccessType : NetworkAccessType.t;
    (*

    The network access type for the notebook run. Valid values are PUBLIC_INTERNET_ONLY and VPC_ONLY.

    *)
  2. vpcId : String_.t option;
    (*

    The identifier of the VPC for the notebook run. This is required when the network access type is VPC_ONLY.

    *)
  3. subnetIds : SubnetIds.t option;
    (*

    The identifiers of the subnets for the notebook run. You can specify up to 10 subnets.

    *)
  4. securityGroupIds : SecurityGroupIds.t option;
    (*

    The identifiers of the security groups for the notebook run. You can specify up to 5 security groups.

    *)
}
Sourceval context_ : string
Sourceval make : ?vpcId:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> networkAccessType:NetworkAccessType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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