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

连接到 CloudFormation 的 Git 提供程序。

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