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>,
}
Expand description
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§
Source§impl Clone for DebugRuleConfiguration
impl Clone for DebugRuleConfiguration
Source§fn clone(&self) -> DebugRuleConfiguration
fn clone(&self) -> DebugRuleConfiguration
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DebugRuleConfiguration
impl Debug for DebugRuleConfiguration
Source§impl Default for DebugRuleConfiguration
impl Default for DebugRuleConfiguration
Source§fn default() -> DebugRuleConfiguration
fn default() -> DebugRuleConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugRuleConfiguration
impl<'de> Deserialize<'de> for DebugRuleConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DebugRuleConfiguration
impl PartialEq for DebugRuleConfiguration
Source§impl Serialize for DebugRuleConfiguration
impl Serialize for DebugRuleConfiguration
impl StructuralPartialEq for DebugRuleConfiguration
Auto Trait Implementations§
impl Freeze for DebugRuleConfiguration
impl RefUnwindSafe for DebugRuleConfiguration
impl Send for DebugRuleConfiguration
impl Sync for DebugRuleConfiguration
impl Unpin for DebugRuleConfiguration
impl UnwindSafe for DebugRuleConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more