Get Sync Blocker Summary
codestarconnections_get_sync_blocker_summary | R Documentation |
Returns a list of the most recent sync blockers¶
Description¶
Returns a list of the most recent sync blockers.
Usage¶
Arguments¶
SyncType
[required] The sync type for the sync blocker summary.
ResourceName
[required] The name of the Amazon Web Services resource currently blocked from automatically being synced from a Git repository.
Value¶
A list with the following syntax:
list(
SyncBlockerSummary = list(
ResourceName = "string",
ParentResourceName = "string",
LatestBlockers = list(
list(
Id = "string",
Type = "AUTOMATED",
Status = "ACTIVE"|"RESOLVED",
CreatedReason = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
Contexts = list(
list(
Key = "string",
Value = "string"
)
),
ResolvedReason = "string",
ResolvedAt = as.POSIXct(
"2015-01-01"
)
)
)
)
)