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¶
Arguments¶
Catalog
[required] Required. The catalog related to the request. Fixed value:
AWSMarketplace
ChangeSetId
[required] Required. The unique identifier for the
start_change_set
request that you want to describe the details for.
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"
)
)
)