本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
StackSet 作業狀態變更事件明細
以下是「 StackSet 作業狀態變更」事件的詳細資訊欄位。
source
和detail-type
欄位會包含在內,因為它們包含 AWS CloudFormation 事件的特定值。
{ . . ., "detail-type": "CloudFormation StackSet Operation Status Change", "source": "aws.cloudformation", . . ., "detail": { "stack-set-arn" : "string", "stack-set-operation-id" : "string", "status-details": { "status": "string" } } } }
detail-type
-
識別事件的類型。
對於 StackSet 作業狀態事件,此值為
CloudFormation StackSet Operation Status Change
。 source
-
識別產生事件的服務。對於 CloudFormation事件,此值為
aws.cloudformation
。 detail
-
包含事JSON件相關資訊的物件。產生事件的服務會決定此欄位的內容。
對於 StackSet 作業狀態事件,此資料包括:
stack-set-arn
-
Amazon 資源名稱 (ARN) 與 StackSet.
stack-set-operation-id
-
與 StackSet作業相關聯的唯一 ID。
status-details
-
status
-
操 StackSet 作狀態。
如需詳細資訊,請參閱StackSets 狀態碼。
有效值︰
RUNNING
|SUCCEEDED
|FAILED
|STOPPING
|STOPPED
|QUEUED
範例: StackSet 作業狀態變更事件
以下是「 StackSet 作業狀態變更」事件的範例。 CloudFormation 已成功完成指定堆疊集上所要求之作業的事件詳細資料。
{ "version": "0", "id": "4de89905-fd92-6a6b-9509-23c04bcb6a21", "detail-type": "CloudFormation StackSet Operation Status Change", "source": "aws.cloudformation", "account": "111122223333", "time": "2021-09-22T05:46:24Z", "region": "us-east-1", "resources": [ "arn:aws:cloudformation:us-east-1:111122223333:stackset/test1234:e5f54eea-d041-44ad-94f8-b8268aca1e59" ], "detail": { "stack-set-arn": "arn:aws:cloudformation:us-east-1:111122223333:stackset/test1234:e5f54eea-d041-44ad-94f8-b8268aca1e59", "stack-set-operation-id": "ce69adce-2221-4483-8c4b-c51f284f25e8", "status-details": { "status": "SUCCEEDED" } } }