Struct aws_sdk_sagemaker::output::DescribeAlgorithmOutput [−][src]
#[non_exhaustive]pub struct DescribeAlgorithmOutput {
pub algorithm_name: Option<String>,
pub algorithm_arn: Option<String>,
pub algorithm_description: Option<String>,
pub creation_time: Option<Instant>,
pub training_specification: Option<TrainingSpecification>,
pub inference_specification: Option<InferenceSpecification>,
pub validation_specification: Option<AlgorithmValidationSpecification>,
pub algorithm_status: Option<AlgorithmStatus>,
pub algorithm_status_details: Option<AlgorithmStatusDetails>,
pub product_id: Option<String>,
pub certify_for_marketplace: bool,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.algorithm_name: Option<String>
The name of the algorithm being described.
algorithm_arn: Option<String>
The Amazon Resource Name (ARN) of the algorithm.
algorithm_description: Option<String>
A brief summary about the algorithm.
creation_time: Option<Instant>
A timestamp specifying when the algorithm was created.
training_specification: Option<TrainingSpecification>
Details about training jobs run by this algorithm.
inference_specification: Option<InferenceSpecification>
Details about inference jobs that the algorithm runs.
validation_specification: Option<AlgorithmValidationSpecification>
Details about configurations for one or more training jobs that Amazon SageMaker runs to test the algorithm.
algorithm_status: Option<AlgorithmStatus>
The current status of the algorithm.
algorithm_status_details: Option<AlgorithmStatusDetails>
Details about the current status of the algorithm.
product_id: Option<String>
The product identifier of the algorithm.
certify_for_marketplace: bool
Whether the algorithm is certified to be listed in Amazon Web Services Marketplace.
Implementations
Creates a new builder-style object to manufacture DescribeAlgorithmOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeAlgorithmOutput
impl Send for DescribeAlgorithmOutput
impl Sync for DescribeAlgorithmOutput
impl Unpin for DescribeAlgorithmOutput
impl UnwindSafe for DescribeAlgorithmOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more