Skip to main content

profile_update_tasks

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

Overview

Nameprofile_update_tasks
TypeResource
Idaws.partnercentral_account.profile_update_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe 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>)
catalogstringThe catalog identifier for the partner account. (pattern: <code>[a-zA-Z0-9-]+</code>)
ended_atstring (date-time)The timestamp when the profile update task was completed or failed.
error_detail_listarrayA list of error details if any errors occurred during the profile update task.
idstringThe unique identifier of the partner account. (pattern: <code>partner-[A-Za-z0-9]{13}</code>)
started_atstring (date-time)The timestamp when the profile update task was started.
statusstringThe current status of the profile update task (in progress, completed, failed, etc.). (IN_PROGRESS, CANCELED, SUCCEEDED, FAILED)
task_detailsobjectThe details of the profile update task including what changes are being made.
task_idstringThe 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:

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

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

SELECT examples

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
;