Class: Aws::SageMaker::Types::MonitoringNetworkConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::MonitoringNetworkConfig
- 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
-
#enable_inter_container_traffic_encryption ⇒ Boolean
Whether to encrypt all communications between the instances used for the monitoring jobs.
-
#enable_network_isolation ⇒ Boolean
Whether to allow inbound and outbound network calls to and from the containers used for the monitoring job.
-
#vpc_config ⇒ Types::VpcConfig
Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.
Instance Attribute Details
#enable_inter_container_traffic_encryption ⇒ Boolean
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.
34425 34426 34427 34428 34429 34430 34431 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 34425 class MonitoringNetworkConfig < Struct.new( :enable_inter_container_traffic_encryption, :enable_network_isolation, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#enable_network_isolation ⇒ Boolean
Whether to allow inbound and outbound network calls to and from the containers used for the monitoring job.
34425 34426 34427 34428 34429 34430 34431 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 34425 class MonitoringNetworkConfig < Struct.new( :enable_inter_container_traffic_encryption, :enable_network_isolation, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC. For more information, see [Give SageMaker Access to Resources in your Amazon VPC].
[1]: docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
34425 34426 34427 34428 34429 34430 34431 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 34425 class MonitoringNetworkConfig < Struct.new( :enable_inter_container_traffic_encryption, :enable_network_isolation, :vpc_config) SENSITIVE = [] include Aws::Structure end |