Skip to content

List Profile History Records

customerprofiles_list_profile_history_records R Documentation

Returns a list of history records for a specific profile, for a specific domain

Description

Returns a list of history records for a specific profile, for a specific domain.

Usage

customerprofiles_list_profile_history_records(DomainName, ProfileId,
  ObjectTypeName, NextToken, MaxResults, ActionType, PerformedBy)

Arguments

DomainName

[required] The unique name of the domain for which to return profile history records.

ProfileId

[required] The identifier of the profile to be taken.

ObjectTypeName

Applies a filter to include profile history records only with the specified ObjectTypeName value in the response.

NextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

MaxResults

The maximum number of results to return per page.

ActionType

Applies a filter to include profile history records only with the specified ActionType value in the response.

PerformedBy

Applies a filter to include profile history records only with the specified PerformedBy value in the response. The PerformedBy value can be the Amazon Resource Name (ARN) of the person or service principal who performed the action.

Value

A list with the following syntax:

list(
  ProfileHistoryRecords = list(
    list(
      Id = "string",
      ObjectTypeName = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      ActionType = "ADDED_PROFILE_KEY"|"DELETED_PROFILE_KEY"|"CREATED"|"UPDATED"|"INGESTED"|"DELETED_BY_CUSTOMER"|"EXPIRED"|"MERGED"|"DELETED_BY_MERGE",
      ProfileObjectUniqueKey = "string",
      PerformedBy = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_profile_history_records(
  DomainName = "string",
  ProfileId = "string",
  ObjectTypeName = "string",
  NextToken = "string",
  MaxResults = 123,
  ActionType = "ADDED_PROFILE_KEY"|"DELETED_PROFILE_KEY"|"CREATED"|"UPDATED"|"INGESTED"|"DELETED_BY_CUSTOMER"|"EXPIRED"|"MERGED"|"DELETED_BY_MERGE",
  PerformedBy = "string"
)