pub struct DescribeAlgorithmOutput {
pub algorithm_arn: String,
pub algorithm_description: Option<String>,
pub algorithm_name: String,
pub algorithm_status: String,
pub algorithm_status_details: AlgorithmStatusDetails,
pub certify_for_marketplace: Option<bool>,
pub creation_time: f64,
pub inference_specification: Option<InferenceSpecification>,
pub product_id: Option<String>,
pub training_specification: TrainingSpecification,
pub validation_specification: Option<AlgorithmValidationSpecification>,
}
Fields§
§algorithm_arn: String
The Amazon Resource Name (ARN) of the algorithm.
algorithm_description: Option<String>
A brief summary about the algorithm.
algorithm_name: String
The name of the algorithm being described.
algorithm_status: String
The current status of the algorithm.
algorithm_status_details: AlgorithmStatusDetails
Details about the current status of the algorithm.
certify_for_marketplace: Option<bool>
Whether the algorithm is certified to be listed in AWS Marketplace.
creation_time: f64
A timestamp specifying when the algorithm was created.
inference_specification: Option<InferenceSpecification>
Details about inference jobs that the algorithm runs.
product_id: Option<String>
The product identifier of the algorithm.
training_specification: TrainingSpecification
Details about training jobs run by this algorithm.
validation_specification: Option<AlgorithmValidationSpecification>
Details about configurations for one or more training jobs that Amazon SageMaker runs to test the algorithm.
Trait Implementations§
Source§impl Clone for DescribeAlgorithmOutput
impl Clone for DescribeAlgorithmOutput
Source§fn clone(&self) -> DescribeAlgorithmOutput
fn clone(&self) -> DescribeAlgorithmOutput
Returns a duplicate 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 DescribeAlgorithmOutput
impl Debug for DescribeAlgorithmOutput
Source§impl Default for DescribeAlgorithmOutput
impl Default for DescribeAlgorithmOutput
Source§fn default() -> DescribeAlgorithmOutput
fn default() -> DescribeAlgorithmOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeAlgorithmOutput
impl<'de> Deserialize<'de> for DescribeAlgorithmOutput
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 DescribeAlgorithmOutput
impl PartialEq for DescribeAlgorithmOutput
impl StructuralPartialEq for DescribeAlgorithmOutput
Auto Trait Implementations§
impl Freeze for DescribeAlgorithmOutput
impl RefUnwindSafe for DescribeAlgorithmOutput
impl Send for DescribeAlgorithmOutput
impl Sync for DescribeAlgorithmOutput
impl Unpin for DescribeAlgorithmOutput
impl UnwindSafe for DescribeAlgorithmOutput
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