Struct aws_sdk_sagemaker::output::DescribeAutoMlJobOutput
source · #[non_exhaustive]pub struct DescribeAutoMlJobOutput { /* private fields */ }
Implementations§
source§impl DescribeAutoMlJobOutput
impl DescribeAutoMlJobOutput
sourcepub fn auto_ml_job_name(&self) -> Option<&str>
pub fn auto_ml_job_name(&self) -> Option<&str>
Returns the name of the AutoML job.
sourcepub fn auto_ml_job_arn(&self) -> Option<&str>
pub fn auto_ml_job_arn(&self) -> Option<&str>
Returns the ARN of the AutoML job.
sourcepub fn input_data_config(&self) -> Option<&[AutoMlChannel]>
pub fn input_data_config(&self) -> Option<&[AutoMlChannel]>
Returns the input data configuration for the AutoML job..
sourcepub fn output_data_config(&self) -> Option<&AutoMlOutputDataConfig>
pub fn output_data_config(&self) -> Option<&AutoMlOutputDataConfig>
Returns the job's output data config.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that has read permission to the input data location and write permission to the output data location in Amazon S3.
sourcepub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
pub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
Returns the job's objective.
sourcepub fn problem_type(&self) -> Option<&ProblemType>
pub fn problem_type(&self) -> Option<&ProblemType>
Returns the job's problem type.
sourcepub fn auto_ml_job_config(&self) -> Option<&AutoMlJobConfig>
pub fn auto_ml_job_config(&self) -> Option<&AutoMlJobConfig>
Returns the configuration for the AutoML job.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Returns the creation time of the AutoML job.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
Returns the job's last modified time.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
Returns the failure reason for an AutoML job, when applicable.
sourcepub fn partial_failure_reasons(&self) -> Option<&[AutoMlPartialFailureReason]>
pub fn partial_failure_reasons(&self) -> Option<&[AutoMlPartialFailureReason]>
Returns a list of reasons for partial failures within an AutoML job.
sourcepub fn best_candidate(&self) -> Option<&AutoMlCandidate>
pub fn best_candidate(&self) -> Option<&AutoMlCandidate>
The best model candidate selected by SageMaker Autopilot using both the best objective metric and lowest InferenceLatency for an experiment.
sourcepub fn auto_ml_job_status(&self) -> Option<&AutoMlJobStatus>
pub fn auto_ml_job_status(&self) -> Option<&AutoMlJobStatus>
Returns the status of the AutoML job.
sourcepub fn auto_ml_job_secondary_status(&self) -> Option<&AutoMlJobSecondaryStatus>
pub fn auto_ml_job_secondary_status(&self) -> Option<&AutoMlJobSecondaryStatus>
Returns the secondary status of the AutoML job.
sourcepub fn generate_candidate_definitions_only(&self) -> bool
pub fn generate_candidate_definitions_only(&self) -> bool
Indicates whether the output for an AutoML job generates candidate definitions only.
sourcepub fn auto_ml_job_artifacts(&self) -> Option<&AutoMlJobArtifacts>
pub fn auto_ml_job_artifacts(&self) -> Option<&AutoMlJobArtifacts>
Returns information on the job's artifacts found in AutoMLJobArtifacts
.
sourcepub fn resolved_attributes(&self) -> Option<&ResolvedAttributes>
pub fn resolved_attributes(&self) -> Option<&ResolvedAttributes>
This contains ProblemType
, AutoMLJobObjective
, and CompletionCriteria
. If you do not provide these values, they are auto-inferred. If you do provide them, the values used are the ones you provide.
sourcepub fn model_deploy_config(&self) -> Option<&ModelDeployConfig>
pub fn model_deploy_config(&self) -> Option<&ModelDeployConfig>
Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if deployed automatically.
sourcepub fn model_deploy_result(&self) -> Option<&ModelDeployResult>
pub fn model_deploy_result(&self) -> Option<&ModelDeployResult>
Provides information about endpoint for the model deployment.
source§impl DescribeAutoMlJobOutput
impl DescribeAutoMlJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeAutoMlJobOutput
.
Trait Implementations§
source§impl Clone for DescribeAutoMlJobOutput
impl Clone for DescribeAutoMlJobOutput
source§fn clone(&self) -> DescribeAutoMlJobOutput
fn clone(&self) -> DescribeAutoMlJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeAutoMlJobOutput
impl Debug for DescribeAutoMlJobOutput
source§impl PartialEq<DescribeAutoMlJobOutput> for DescribeAutoMlJobOutput
impl PartialEq<DescribeAutoMlJobOutput> for DescribeAutoMlJobOutput
source§fn eq(&self, other: &DescribeAutoMlJobOutput) -> bool
fn eq(&self, other: &DescribeAutoMlJobOutput) -> bool
self
and other
values to be equal, and is used
by ==
.