資源同步狀態變更事件明細 - AWS CloudFormation

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

資源同步狀態變更事件明細

以下是資源同步狀態變更事件的詳細資訊欄位。

sourcedetail-type欄位會包含在內,因為它們包含 AWS CloudFormation 事件的特定值。

{ . . ., "detail-type": "Git Sync Resource Sync Status Change", "source": "aws.codeconnections", . . ., "detail": { "providerType" : "string", "commit" : "string", "repositoryName": "string", "branch": "string", "syncType": "string", "syncTarget": "string", "status": "string", "previousSync": "string" } }
detail-type

識別事件的類型。

對於存放庫同步狀態事件,此值為Git Sync Repository Sync Status Change

source

識別產生事件的服務。對於 Git 同步事件,這個值是aws.codeconnections

detail

包含事JSON件相關資訊的物件。產生事件的服務會決定此欄位的內容。

對於資源同步狀態事件,此資料包括:

providerType

連線到的 Git 提供者 CloudFormation。

有效值GitHub | GitHub Enterprise | GitLab | BitBucket

commit

與存儲庫提交關聯的唯一 ID。

repositoryName

Git 儲存庫名稱。

branch

與儲存庫分支相關聯的唯一 ID。

syncType

正在執行的同步類型。

syncTarget

資源同步的目標堆疊。

status

目前儲存庫同步狀態。

有效值FAILED | INITIATED | IN_PROGRESS | SUCCEEDED

previousSync

目前狀態之前的同步狀態。

有效值FAILED | INITIATED | IN_PROGRESS | SUCCEEDED

範例:資源同步狀態變更事件

以下是資源同步狀態變更事件的範例。 CodeConnections 已成功同步資源的事件詳細資訊。

{ "version": "0", "id": "1b5d8feb-agbv-4cf7-a9f1-bf3703467718", "detail-type": "Git Sync Resource Sync Status Change", "source": "aws.codeconnections", "account": "111122223333", "time": "2023-12-22T18:43:48Z", "region": "us-east-1", "resources": ["arn:aws:aws:cloudformation:us-east-1:111122223333:stack/targetStack1"], "detail": { "providerType": "GitHub", "commit": "sample-commit-id", "repositoryName": "sample-repository-name", "branch": "main", "syncType": "CFN_STACK_SYNC", "syncTarget": "arn:aws:aws:cloudformation:us-east-1:111122223333:stack/targetStack1", "status": "SUCCEEDED", "previousStatus": "IN_PROGRESS" } }