[][src]Struct rusoto_sagemaker::DebugRuleConfiguration

pub struct DebugRuleConfiguration {
    pub instance_type: Option<String>,
    pub local_path: Option<String>,
    pub rule_configuration_name: String,
    pub rule_evaluator_image: String,
    pub rule_parameters: Option<HashMap<String, String>>,
    pub s3_output_path: Option<String>,
    pub volume_size_in_gb: Option<i64>,
}

Configuration information for debugging rules.

Fields

instance_type: Option<String>

The instance type to deploy for a training job.

local_path: Option<String>

Path to local storage location for output of rules. Defaults to /opt/ml/processing/output/rule/.

rule_configuration_name: String

The name of the rule configuration. It must be unique relative to other rule configuration names.

rule_evaluator_image: String

The Amazon Elastic Container (ECR) Image for the managed rule evaluation.

rule_parameters: Option<HashMap<String, String>>

Runtime configuration for rule container.

s3_output_path: Option<String>

Path to Amazon S3 storage location for rules.

volume_size_in_gb: Option<i64>

The size, in GB, of the ML storage volume attached to the processing instance.

Trait Implementations

impl Clone for DebugRuleConfiguration[src]

impl Debug for DebugRuleConfiguration[src]

impl Default for DebugRuleConfiguration[src]

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

impl PartialEq<DebugRuleConfiguration> for DebugRuleConfiguration[src]

impl Serialize for DebugRuleConfiguration[src]

impl StructuralPartialEq for DebugRuleConfiguration[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> 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.