ModelExplainabilityJobDefinitionProperties

Struct ModelExplainabilityJobDefinitionProperties 

Source
pub struct ModelExplainabilityJobDefinitionProperties {
    pub job_definition_name: Option<Value<String>>,
    pub job_resources: Value<MonitoringResources>,
    pub model_explainability_app_specification: Value<ModelExplainabilityAppSpecification>,
    pub model_explainability_baseline_config: Option<Value<ModelExplainabilityBaselineConfig>>,
    pub model_explainability_job_input: Value<ModelExplainabilityJobInput>,
    pub model_explainability_job_output_config: Value<MonitoringOutputConfig>,
    pub network_config: Option<Value<NetworkConfig>>,
    pub role_arn: Value<String>,
    pub stopping_condition: Option<Value<StoppingCondition>>,
    pub tags: Option<ValueList<Tag>>,
}
Expand description

Properties for the ModelExplainabilityJobDefinition resource.

Fields§

§job_definition_name: Option<Value<String>>

Property JobDefinitionName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§job_resources: Value<MonitoringResources>

Property JobResources.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§model_explainability_app_specification: Value<ModelExplainabilityAppSpecification>

Property ModelExplainabilityAppSpecification.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§model_explainability_baseline_config: Option<Value<ModelExplainabilityBaselineConfig>>

Property ModelExplainabilityBaselineConfig.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§model_explainability_job_input: Value<ModelExplainabilityJobInput>

Property ModelExplainabilityJobInput.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§model_explainability_job_output_config: Value<MonitoringOutputConfig>

Property ModelExplainabilityJobOutputConfig.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§network_config: Option<Value<NetworkConfig>>

Property NetworkConfig.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§role_arn: Value<String>

Property RoleArn.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§stopping_condition: Option<Value<StoppingCondition>>

Property StoppingCondition.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§tags: Option<ValueList<Tag>>

Property Tags.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations§

Source§

impl Debug for ModelExplainabilityJobDefinitionProperties

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ModelExplainabilityJobDefinitionProperties

Source§

fn default() -> ModelExplainabilityJobDefinitionProperties

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ModelExplainabilityJobDefinitionProperties

Source§

fn deserialize<D: Deserializer<'de>>( d: D, ) -> Result<ModelExplainabilityJobDefinitionProperties, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<ModelExplainabilityJobDefinitionProperties> for ModelExplainabilityJobDefinition

Source§

fn from( properties: ModelExplainabilityJobDefinitionProperties, ) -> ModelExplainabilityJobDefinition

Converts to this type from the input type.
Source§

impl Serialize for ModelExplainabilityJobDefinitionProperties

Source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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