Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NetworkConfig

import type { NetworkConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Networking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.

interface NetworkConfig {
EnableInterContainerTrafficEncryption?: boolean | null;
EnableNetworkIsolation?: boolean | null;
VpcConfig?: VpcConfig | null;
}

§Properties

§
EnableInterContainerTrafficEncryption?: boolean | null
[src]

Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.

§
EnableNetworkIsolation?: boolean | null
[src]

Whether to allow inbound and outbound network calls to and from the containers used for the processing job.

§
VpcConfig?: VpcConfig | null
[src]