Struct aws_sdk_sagemaker::model::monitoring_network_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for MonitoringNetworkConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn enable_inter_container_traffic_encryption(self, input: bool) -> Self
pub fn enable_inter_container_traffic_encryption(self, input: bool) -> Self
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.
sourcepub fn set_enable_inter_container_traffic_encryption(
self,
input: Option<bool>
) -> Self
pub fn set_enable_inter_container_traffic_encryption(
self,
input: Option<bool>
) -> Self
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.
sourcepub fn enable_network_isolation(self, input: bool) -> Self
pub fn enable_network_isolation(self, input: bool) -> Self
Whether to allow inbound and outbound network calls to and from the containers used for the monitoring job.
sourcepub fn set_enable_network_isolation(self, input: Option<bool>) -> Self
pub fn set_enable_network_isolation(self, input: Option<bool>) -> Self
Whether to allow inbound and outbound network calls to and from the containers used for the monitoring job.
sourcepub fn vpc_config(self, input: VpcConfig) -> Self
pub fn vpc_config(self, input: VpcConfig) -> Self
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.
sourcepub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self
pub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self
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.
sourcepub fn build(self) -> MonitoringNetworkConfig
pub fn build(self) -> MonitoringNetworkConfig
Consumes the builder and constructs a MonitoringNetworkConfig
.