Class: Aws::LookoutEquipment::Types::ImportModelVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::ImportModelVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lookoutequipment/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique identifier for the request.
-
#dataset_name ⇒ String
The name of the dataset for the machine learning model being imported.
-
#inference_data_import_strategy ⇒ String
Indicates how to import the accumulated inference data when a model version is imported.
-
#labels_input_configuration ⇒ Types::LabelsInputConfiguration
Contains the configuration information for the S3 location being used to hold label data.
-
#model_name ⇒ String
The name for the machine learning model to be created.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of a role with permission to access the data source being used to create the machine learning model.
-
#server_side_kms_key_id ⇒ String
Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.
-
#source_model_version_arn ⇒ String
The Amazon Resource Name (ARN) of the model version to import.
-
#tags ⇒ Array<Types::Tag>
The tags associated with the machine learning model to be created.
Instance Attribute Details
#client_token ⇒ String
A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#dataset_name ⇒ String
The name of the dataset for the machine learning model being imported.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#inference_data_import_strategy ⇒ String
Indicates how to import the accumulated inference data when a model version is imported. The possible values are as follows:
-
NO_IMPORT – Don’t import the data.
-
ADD_WHEN_EMPTY – Only import the data from the source model if there is no existing data in the target model.
-
OVERWRITE – Import the data from the source model and overwrite the existing data in the target model.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#labels_input_configuration ⇒ Types::LabelsInputConfiguration
Contains the configuration information for the S3 location being used to hold label data.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#model_name ⇒ String
The name for the machine learning model to be created. If the model already exists, Amazon Lookout for Equipment creates a new version. If you do not specify this field, it is filled with the name of the source model.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of a role with permission to access the data source being used to create the machine learning model.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#server_side_kms_key_id ⇒ String
Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#source_model_version_arn ⇒ String
The Amazon Resource Name (ARN) of the model version to import.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags associated with the machine learning model to be created.
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 2148 class ImportModelVersionRequest < Struct.new( :source_model_version_arn, :model_name, :dataset_name, :labels_input_configuration, :client_token, :role_arn, :server_side_kms_key_id, :tags, :inference_data_import_strategy) SENSITIVE = [] include Aws::Structure end |