Class: Aws::SageMaker::Types::MonitoringNetworkConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::MonitoringNetworkConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
When making an API call, you may pass MonitoringNetworkConfig data as a hash:
{
enable_inter_container_traffic_encryption: false,
enable_network_isolation: false,
vpc_config: {
security_group_ids: ["SecurityGroupId"], # required
subnets: ["SubnetId"], # required
},
}
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 a VPC that your training jobs and hosted models 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.
30920 30921 30922 30923 30924 30925 30926 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30920 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.
30920 30921 30922 30923 30924 30925 30926 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30920 class MonitoringNetworkConfig < Struct.new( :enable_inter_container_traffic_encryption, :enable_network_isolation, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::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 and Protect Training Jobs by Using an Amazon Virtual Private Cloud.
30920 30921 30922 30923 30924 30925 30926 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30920 class MonitoringNetworkConfig < Struct.new( :enable_inter_container_traffic_encryption, :enable_network_isolation, :vpc_config) SENSITIVE = [] include Aws::Structure end |