List Record History
| servicecatalog_list_record_history | R Documentation | 
Lists the specified requests or all performed requests¶
Description¶
Lists the specified requests or all performed requests.
Usage¶
servicecatalog_list_record_history(AcceptLanguage, AccessLevelFilter,
  SearchFilter, PageSize, PageToken)
Arguments¶
| AcceptLanguage | The language code. 
 | 
| AccessLevelFilter | The access level to use to obtain results. The default is
 | 
| SearchFilter | The search filter to scope the results. | 
| PageSize | The maximum number of items to return with this call. | 
| PageToken | The page token for the next set of results. To retrieve the first set of results, use null. | 
Value¶
A list with the following syntax:
list(
  RecordDetails = list(
    list(
      RecordId = "string",
      ProvisionedProductName = "string",
      Status = "CREATED"|"IN_PROGRESS"|"IN_PROGRESS_IN_ERROR"|"SUCCEEDED"|"FAILED",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      ProvisionedProductType = "string",
      RecordType = "string",
      ProvisionedProductId = "string",
      ProductId = "string",
      ProvisioningArtifactId = "string",
      PathId = "string",
      RecordErrors = list(
        list(
          Code = "string",
          Description = "string"
        )
      ),
      RecordTags = list(
        list(
          Key = "string",
          Value = "string"
        )
      ),
      LaunchRoleArn = "string"
    )
  ),
  NextPageToken = "string"
)
Request syntax¶
svc$list_record_history(
  AcceptLanguage = "string",
  AccessLevelFilter = list(
    Key = "Account"|"Role"|"User",
    Value = "string"
  ),
  SearchFilter = list(
    Key = "string",
    Value = "string"
  ),
  PageSize = 123,
  PageToken = "string"
)