Class: Aws::CleanRoomsML::Types::CreateTrainedModelResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::CreateTrainedModelResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanroomsml/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#trained_model_arn ⇒ String
The Amazon Resource Name (ARN) of the trained model.
-
#version_identifier ⇒ String
The unique version identifier assigned to the newly created trained model.
Instance Attribute Details
#trained_model_arn ⇒ String
The Amazon Resource Name (ARN) of the trained model.
1699 1700 1701 1702 1703 1704 |
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 1699 class CreateTrainedModelResponse < Struct.new( :trained_model_arn, :version_identifier) SENSITIVE = [] include Aws::Structure end |
#version_identifier ⇒ String
The unique version identifier assigned to the newly created trained model. This identifier can be used to reference this specific version of the trained model in subsequent operations such as inference jobs or incremental training.
The initial version identifier for the base version of the trained model is “NULL”.
1699 1700 1701 1702 1703 1704 |
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 1699 class CreateTrainedModelResponse < Struct.new( :trained_model_arn, :version_identifier) SENSITIVE = [] include Aws::Structure end |