存储库同步状态更改事件详细信息 - 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

与 CodeConnections 关联的 Amazon 资源名称(ARN)。

providerType

连接到 CloudFormation 的 Git 提供程序。

有效值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", } }