training_plan_extension_histories
Creates, updates, deletes, gets or lists a training_plan_extension_histories resource.
Overview
| Name | training_plan_extension_histories |
| Type | Resource |
| Id | aws.sagemaker.training_plan_extension_histories |
Fields
The following fields are returned by SELECT queries:
- describe_training_plan_extension_history
| Name | Datatype | Description |
|---|---|---|
availability_zone | string | The Availability Zone of the extension. |
availability_zone_id | string | The Availability Zone ID of the extension. (pattern: <code>[a-z]{3}\d-az\d</code>) |
currency_code | string | The currency code for the upfront fee (e.g., USD). |
duration_hours | integer | The duration of the extension in hours. |
end_date | string (date-time) | The end date of the extension period. |
extended_at | string (date-time) | The timestamp when the extension was created. |
payment_status | string | The payment processing status of the extension. |
start_date | string (date-time) | The start date of the extension period. |
status | string | The current status of the extension (e.g., Pending, Active, Scheduled, Failed, Expired). |
training_plan_extension_offering_id | string | The unique identifier of the extension offering that was used to create this extension. |
upfront_fee | string | The upfront fee for the extension. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_training_plan_extension_history | select | region | Retrieves the extension history for a specified training plan. The response includes details about each extension, such as the offering ID, start and end dates, status, payment status, and cost information. |
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
- describe_training_plan_extension_history
Retrieves the extension history for a specified training plan. The response includes details about each extension, such as the offering ID, start and end dates, status, payment status, and cost information.
SELECT
availability_zone,
availability_zone_id,
currency_code,
duration_hours,
end_date,
extended_at,
payment_status,
start_date,
status,
training_plan_extension_offering_id,
upfront_fee
FROM aws.sagemaker.training_plan_extension_histories
WHERE region = '{{ region }}' -- required
;