pub struct DescribeAutoMLJobResponse {Show 18 fields
pub auto_ml_job_arn: String,
pub auto_ml_job_artifacts: Option<AutoMLJobArtifacts>,
pub auto_ml_job_config: Option<AutoMLJobConfig>,
pub auto_ml_job_name: String,
pub auto_ml_job_objective: Option<AutoMLJobObjective>,
pub auto_ml_job_secondary_status: String,
pub auto_ml_job_status: String,
pub best_candidate: Option<AutoMLCandidate>,
pub creation_time: f64,
pub end_time: Option<f64>,
pub failure_reason: Option<String>,
pub generate_candidate_definitions_only: Option<bool>,
pub input_data_config: Vec<AutoMLChannel>,
pub last_modified_time: f64,
pub output_data_config: AutoMLOutputDataConfig,
pub problem_type: Option<String>,
pub resolved_attributes: Option<ResolvedAttributes>,
pub role_arn: String,
}
Fields§
§auto_ml_job_arn: String
Returns the job's ARN.
auto_ml_job_artifacts: Option<AutoMLJobArtifacts>
Returns information on the job's artifacts found in AutoMLJobArtifacts.
auto_ml_job_config: Option<AutoMLJobConfig>
Returns the job's config.
auto_ml_job_name: String
Returns the name of a job.
auto_ml_job_objective: Option<AutoMLJobObjective>
Returns the job's objective.
auto_ml_job_secondary_status: String
Returns the job's AutoMLJobSecondaryStatus.
auto_ml_job_status: String
Returns the job's AutoMLJobStatus.
best_candidate: Option<AutoMLCandidate>
Returns the job's BestCandidate.
creation_time: f64
Returns the job's creation time.
end_time: Option<f64>
Returns the job's end time.
failure_reason: Option<String>
Returns the job's FailureReason.
generate_candidate_definitions_only: Option<bool>
Returns the job's output from GenerateCandidateDefinitionsOnly.
input_data_config: Vec<AutoMLChannel>
Returns the job's input data config.
last_modified_time: f64
Returns the job's last modified time.
output_data_config: AutoMLOutputDataConfig
Returns the job's output data config.
problem_type: Option<String>
Returns the job's problem type.
resolved_attributes: Option<ResolvedAttributes>
This contains ProblemType, AutoMLJobObjective and CompletionCriteria. They're auto-inferred values, if not provided by you. If you do provide them, then they'll be the same as provided.
role_arn: String
The Amazon Resource Name (ARN) of the AWS 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.
Trait Implementations§
Source§impl Clone for DescribeAutoMLJobResponse
impl Clone for DescribeAutoMLJobResponse
Source§fn clone(&self) -> DescribeAutoMLJobResponse
fn clone(&self) -> DescribeAutoMLJobResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more