profile_update_tasks
Creates, updates, deletes, gets or lists a profile_update_tasks resource.
Overview
| Name | profile_update_tasks |
| Type | Resource |
| Id | aws.partnercentral_account.profile_update_tasks |
Fields
The following fields are returned by SELECT queries:
- get_profile_update_task
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (ARN) of the profile update task. (pattern: <code>arn:[a-z-]+:partnercentral:[a-z0-9-]+:[0-9]{12}:catalog/[A-Za-z-_]+/partner/partner-[A-Za-z0-9]{13}</code>) |
catalog | string | The catalog identifier for the partner account. (pattern: <code>[a-zA-Z0-9-]+</code>) |
ended_at | string (date-time) | The timestamp when the profile update task was completed or failed. |
error_detail_list | array | A list of error details if any errors occurred during the profile update task. |
id | string | The unique identifier of the partner account. (pattern: <code>partner-[A-Za-z0-9]{13}</code>) |
started_at | string (date-time) | The timestamp when the profile update task was started. |
status | string | The current status of the profile update task (in progress, completed, failed, etc.). (IN_PROGRESS, CANCELED, SUCCEEDED, FAILED) |
task_details | object | The details of the profile update task including what changes are being made. |
task_id | string | The unique identifier of the profile update task. (pattern: <code>pprofiletask-[A-Za-z0-9]{13}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_profile_update_task | select | region | Retrieves information about a specific profile update task. |
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
- get_profile_update_task
Retrieves information about a specific profile update task.
SELECT
arn,
catalog,
ended_at,
error_detail_list,
id,
started_at,
status,
task_details,
task_id
FROM aws.partnercentral_account.profile_update_tasks
WHERE region = '{{ region }}' -- required
;