Skip to main content

training_plan_offerings

Creates, updates, deletes, gets or lists a training_plan_offerings resource.

Overview

Nametraining_plan_offerings
TypeResource
Idaws.sagemaker.training_plan_offerings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
training_plan_extension_offeringsarrayA 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_offeringsarrayA list of training plan offerings that match the search criteria.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_training_plan_offeringsselectregionSearches 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;