Describe Change Set
| marketplacecatalog_describe_change_set | R Documentation | 
Provides information about a given change set¶
Description¶
Provides information about a given change set.
Usage¶
marketplacecatalog_describe_change_set(Catalog, ChangeSetId)
Arguments¶
| Catalog | [required] Required. The catalog related to the request. Fixed
value:  | 
| ChangeSetId | [required] Required. The unique identifier for the
 | 
Value¶
A list with the following syntax:
list(
  ChangeSetId = "string",
  ChangeSetArn = "string",
  ChangeSetName = "string",
  Intent = "VALIDATE"|"APPLY",
  StartTime = "string",
  EndTime = "string",
  Status = "PREPARING"|"APPLYING"|"SUCCEEDED"|"CANCELLED"|"FAILED",
  FailureCode = "CLIENT_ERROR"|"SERVER_FAULT",
  FailureDescription = "string",
  ChangeSet = list(
    list(
      ChangeType = "string",
      Entity = list(
        Type = "string",
        Identifier = "string"
      ),
      Details = "string",
      DetailsDocument = list(),
      ErrorDetailList = list(
        list(
          ErrorCode = "string",
          ErrorMessage = "string"
        )
      ),
      ChangeName = "string"
    )
  )
)
Request syntax¶
svc$describe_change_set(
  Catalog = "string",
  ChangeSetId = "string"
)