儲存庫同步狀態變更事件詳細 - AWS CloudFormation

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

儲存庫同步狀態變更事件詳細

以下是存放庫同步狀態變更事件的詳細資料欄位。

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

{ . . ., "detail-type": "Git Sync Repository Sync Status Change", "source": "aws.codeconnections", . . ., "detail": { "connectionArn" : "string", "providerType" : "string", "repositoryName": "string", "providerType": "string", "repositoryName": "string", "repositoryArn": "string", "repositoryLinkId": "string", "ownerId": "string", "commit": "string", "branch": "string", "syncType": "string", "status": "string", "previousSync": "string" } } }
detail-type

識別事件的類型。

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

source

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

detail

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

對於存放庫同步狀態事件,此資料包括:

connectionArn

與相關聯的 Amazon 資源名稱(ARN) CodeConnections。

providerType

連線到的 Git 提供者 CloudFormation。

有效值GitHub | GitHub Enterprise | GitLab | BitBucket

repositoryName

Git 儲存庫名稱。

repositoryArn

與 Git 儲存庫ARN相關聯的。

與存放庫連結相關聯的唯一 ID。

ownerId

與儲存庫擁有者相關聯的唯一 ID。

commit

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

branch

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

syncType

正在執行的同步類型。

status

目前儲存庫同步狀態。

有效值FAILED | INITIATED | IN_PROGRESS | SUCCEEDED

previousSync

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

有效值FAILED | INITIATED | IN_PROGRESS | SUCCEEDED

範例:存放庫同步狀態變更事件

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

{ "version": "0", "id": "1b5d8feb-agbv-4cf7-a9f1-bf3703467718", "detail-type": "GitSync Repository Sync Status Change", "source": "aws.codeconnections", "account": "111122223333", "time": "2023-12-22T18:43:48Z", "region": "us-east-1", "resources": ["arn:aws:aws:codestar-connections:us-east-1:111122223333:repository-link/550e8400-e29b-41d4-a716-446655440000",], "detail": { "connectionArn": "arn:aws:codestar-connections:us-east-1:111122223333:connection/sample-connection-id", "providerType": "GitHub", "repositoryName": "sample-repository-name", "repositoryArn": "arn:aws:aws:codestar-connections:us-east-1:111122223333:repository-link/550e8400-e29b-41d4-a716-446655440000" "repositoryLinkId": "550e8400-e29b-41d4-a716-446655440000" "ownerId": "sample-owner-id", "commit": "sample-commit-id", "branch": "main", "syncType": "CFN_STACK_SYNC", "status": "SUCCEEDED", "previousStatus": "IN_PROGRESS", } }