List Change Sets
marketplacecatalog_list_change_sets | R Documentation |
Returns the list of change sets owned by the account being used to make the call¶
Description¶
Returns the list of change sets owned by the account being used to make
the call. You can filter this list by providing any combination of
entityId
, ChangeSetName
, and status. If you provide more than one
filter, the API operation applies a logical AND between the filters.
You can describe a change during the 60-day request history retention period for API calls.
Usage¶
Arguments¶
Catalog
[required] The catalog related to the request. Fixed value:
AWSMarketplace
FilterList
An array of filter objects.
Sort
An object that contains two attributes,
SortBy
andSortOrder
.MaxResults
The maximum number of results returned by a single call. This value must be provided in the next call to retrieve the next set of results. By default, this value is 20.
NextToken
The token value retrieved from a previous call to access the next page of results.
Value¶
A list with the following syntax:
list(
ChangeSetSummaryList = list(
list(
ChangeSetId = "string",
ChangeSetArn = "string",
ChangeSetName = "string",
StartTime = "string",
EndTime = "string",
Status = "PREPARING"|"APPLYING"|"SUCCEEDED"|"CANCELLED"|"FAILED",
EntityIdList = list(
"string"
),
FailureCode = "CLIENT_ERROR"|"SERVER_FAULT"
)
),
NextToken = "string"
)