Skip to content

Describe Record

servicecatalog_describe_record R Documentation

Gets information about the specified request operation

Description

Gets information about the specified request operation.

Use this operation after calling a request operation (for example, provision_product, terminate_provisioned_product, or update_provisioned_product).

If a provisioned product was transferred to a new owner using update_provisioned_product_properties, the new owner will be able to describe all past records for that product. The previous owner will no longer be able to describe the records, but will be able to use list_record_history to see the product's history from when he was the owner.

Usage

servicecatalog_describe_record(AcceptLanguage, Id, PageToken, PageSize)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

Id

[required] The record identifier of the provisioned product. This identifier is returned by the request operation.

PageToken

The page token for the next set of results. To retrieve the first set of results, use null.

PageSize

The maximum number of items to return with this call.

Value

A list with the following syntax:

list(
  RecordDetail = 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"
  ),
  RecordOutputs = list(
    list(
      OutputKey = "string",
      OutputValue = "string",
      Description = "string"
    )
  ),
  NextPageToken = "string"
)

Request syntax

svc$describe_record(
  AcceptLanguage = "string",
  Id = "string",
  PageToken = "string",
  PageSize = 123
)