Class: Aws::SageMaker::Types::AIRecommendationAdapterDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AIRecommendationAdapterDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The per-recommendation LoRA adapter details. Contains both the model package ARNs and Amazon S3 URIs for each adapter, regardless of which form was originally supplied in the request. When the customer supplies only Amazon S3 URIs, Amazon SageMaker AI creates model packages on their behalf.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_package_arns ⇒ Array<Types::AIAdapterModelPackageEntry>
The list of LoRA adapters with their model package ARNs.
-
#s3_uris ⇒ Array<Types::AIAdapterS3Entry>
The list of LoRA adapters with their Amazon S3 URIs.
Instance Attribute Details
#model_package_arns ⇒ Array<Types::AIAdapterModelPackageEntry>
The list of LoRA adapters with their model package ARNs.
449 450 451 452 453 454 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 449 class AIRecommendationAdapterDetails < Struct.new( :model_package_arns, :s3_uris) SENSITIVE = [] include Aws::Structure end |
#s3_uris ⇒ Array<Types::AIAdapterS3Entry>
The list of LoRA adapters with their Amazon S3 URIs.
449 450 451 452 453 454 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 449 class AIRecommendationAdapterDetails < Struct.new( :model_package_arns, :s3_uris) SENSITIVE = [] include Aws::Structure end |