[][src]Struct rusoto_sagemaker::MonitoringNetworkConfig

pub struct MonitoringNetworkConfig {
    pub enable_inter_container_traffic_encryption: Option<bool>,
    pub enable_network_isolation: Option<bool>,
    pub vpc_config: Option<VpcConfig>,
}

The networking configuration for the monitoring job.

Fields

enable_inter_container_traffic_encryption: Option<bool>

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.

enable_network_isolation: Option<bool>

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

vpc_config: Option<VpcConfig>

Trait Implementations

impl Clone for MonitoringNetworkConfig[src]

impl Debug for MonitoringNetworkConfig[src]

impl Default for MonitoringNetworkConfig[src]

impl<'de> Deserialize<'de> for MonitoringNetworkConfig[src]

impl PartialEq<MonitoringNetworkConfig> for MonitoringNetworkConfig[src]

impl Serialize for MonitoringNetworkConfig[src]

impl StructuralPartialEq for MonitoringNetworkConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.