Class: Aws::SageMaker::Types::MonitoringNetworkConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

The networking configuration for the monitoring job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enable_inter_container_traffic_encryptionBoolean

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

Returns:

  • (Boolean)


30465
30466
30467
30468
30469
30470
30471
# File 'lib/aws-sdk-sagemaker/types.rb', line 30465

class MonitoringNetworkConfig < Struct.new(
  :enable_inter_container_traffic_encryption,
  :enable_network_isolation,
  :vpc_config)
  SENSITIVE = []
  include Aws::Structure
end

#enable_network_isolationBoolean

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

Returns:

  • (Boolean)


30465
30466
30467
30468
30469
30470
30471
# File 'lib/aws-sdk-sagemaker/types.rb', line 30465

class MonitoringNetworkConfig < Struct.new(
  :enable_inter_container_traffic_encryption,
  :enable_network_isolation,
  :vpc_config)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_configTypes::VpcConfig

Specifies a VPC that your training jobs and hosted models have access to. Control access to and from your training and model containers by configuring the VPC. For more information, see

Protect Endpoints by Using an Amazon Virtual Private Cloud][1

and

[Protect Training Jobs by Using an Amazon Virtual Private Cloud].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html [2]: docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html

Returns:



30465
30466
30467
30468
30469
30470
30471
# File 'lib/aws-sdk-sagemaker/types.rb', line 30465

class MonitoringNetworkConfig < Struct.new(
  :enable_inter_container_traffic_encryption,
  :enable_network_isolation,
  :vpc_config)
  SENSITIVE = []
  include Aws::Structure
end