training_plan_offerings
Creates, updates, deletes, gets or lists a training_plan_offerings resource.
Overview
| Name | training_plan_offerings |
| Type | Resource |
| Id | aws.sagemaker.training_plan_offerings |
Fields
The following fields are returned by SELECT queries:
- search_training_plan_offerings
| Name | Datatype | Description |
|---|---|---|
training_plan_extension_offerings | array | A list of extension offerings available for the specified training plan. These offerings can be used with the ExtendTrainingPlan API to extend an existing training plan. |
training_plan_offerings | array | A list of training plan offerings that match the search criteria. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
search_training_plan_offerings | select | region | Searches for available training plan offerings based on specified criteria. Users search for available plan offerings based on their requirements (e.g., instance type, count, start time, duration). And then, they create a plan that best matches their needs using the ID of the plan offering they want to use. For more information about how to reserve GPU capacity for your SageMaker training jobs or SageMaker HyperPod clusters using Amazon SageMaker Training Plan , see CreateTrainingPlan . |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- search_training_plan_offerings
Searches for available training plan offerings based on specified criteria. Users search for available plan offerings based on their requirements (e.g., instance type, count, start time, duration). And then, they create a plan that best matches their needs using the ID of the plan offering they want to use. For more information about how to reserve GPU capacity for your SageMaker training jobs or SageMaker HyperPod clusters using Amazon SageMaker Training Plan , see CreateTrainingPlan .
SELECT
training_plan_extension_offerings,
training_plan_offerings
FROM aws.sagemaker.training_plan_offerings
WHERE region = '{{ region }}' -- required
;