StackSet ステータスの変更イベントの詳細 - AWS CloudFormation

StackSet ステータスの変更イベントの詳細

以下は、StackSet ステータスの変更イベントの詳細フィールドです。

sourcedetail-type のフィールドがあるのは、AWS CloudFormation イベントの固有の値が含まれているためです。

{ . . ., "detail-type": "CloudFormation StackSet Status Change", "source": "aws.cloudformation", . . ., "detail": { "stack-set-arn" : "string", "status-details": { "status":"string" } } }
detail-type

イベントのタイプを示します。

StackSet ステータスイベントの場合、この値は CloudFormation StackSet Status Change です。

source

イベントを発生させたサービスを識別します。CloudFormation イベントの場合、この値は aws.cloudformation です。

detail

イベントに関する情報を含む JSON オブジェクト。このフィールドの内容は、イベントを生成するサービスによって決まります。

StackSet ステータスイベントの場合、このデータには以下が含まれます。

stack-set-arn

スタックセットに関連付けられている Amazon リソースネーム (ARN)。

status-details
status

StackSet ステータス。

有効な値: ACTIVE | DELETED

例: StackSet ステータス変更イベント

以下は、StackSet ステータス変更イベントの例です。このイベントは、CloudFormation が指定されたスタックセットを削除したことを詳述します。

{ "version": "0", "id": "42h6hb90-hg0w-11op-b01v-0xhnh0934z09", "detail-type": "CloudFormation StackSet Status Change", "source": "aws.cloudformation", "account": "111122223333", "time": "2021-09-23T17:06:18Z", "region": "us-east-1", "resources": [ "arn:aws:cloudformation:us-east-1:111122223333:stackset/test12345:3f3a3fbe-c937-4eb3-a87d-e36a0af3f663" ], "detail": { "stack-set-arn" : "arn:aws:cloudformation:us-east-1:111122223333:stackset/test12345:3f3a3fbe-c937-4eb3-a87d-e36a0af3f663", "status-details": { "status":"DELETED" } } }