Method: Aws::MachineLearning::Types::MLModel#name
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
#name ⇒ String
A user-supplied name or description of the MLModel.
2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2595 class MLModel < Struct.new( :ml_model_id, :training_data_source_id, :created_by_iam_user, :created_at, :last_updated_at, :name, :status, :size_in_bytes, :endpoint_info, :training_parameters, :input_data_location_s3, :algorithm, :ml_model_type, :score_threshold, :score_threshold_last_updated_at, :message, :compute_time, :finished_at, :started_at) SENSITIVE = [] include Aws::Structure end |