ドリフト検出のステータスの変更イベントの詳細 - AWS CloudFormation

ドリフト検出のステータスの変更イベントの詳細

以下は、スタックドリフト検出イベントの詳細フィールドです。

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

{ . . ., "detail-type":"CloudFormation Drift Detection Status Change", "source":"aws.cloudformation", . . ., "detail":{ "stack-id":"string", "stack-drift-detection-id":"string", "status-details":{ "stack-drift-status":"string", "detection-status":"string" }, "drift-detection-details":{ "drifted-stack-resource-count":integer }, "client-request-token":"string" } }
detail-type

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

スタックドリフト検出イベントの場合、この値は CloudFormation Drift Detection Status Change です。

source

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

detail

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

スタックドリフト検出イベントの場合、このデータには以下が含まれます。

stack-id

スタックと関連付けられている一意のスタック ID。

stack-drift-detection-id

スタックドリフト検知 ID。

status-details
stack-drift-status

スタックのドリフトステータス。

detection-status

ドリフト検知オペレーションのステータス

drift-detection-details
drifted-stack-resource-count

ドリフトしたリソースの数。値が -1 のとき、ドリフト検出が進行中です。その他すべての非負の整数は、ドリフトされたリソースの実際の数を表します。

client-request-token

API を呼び出すために使用されるアクセストークン。指定されたスタックオペレーションで開始されるイベントはすべて、同一クライアントのリクエストトークンに割り当てられ、オペレーションの追跡に使用できます。コンソールから開始されたスタック操作は、Console-StackOperation-ID のトークン形式を使用し、スタック操作の識別が容易になります。たとえば、コンソールを使用してスタックを作成した場合、作成されたスタックイベントは Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002 の形式の同じトークンを割り当てられます。

例: スタックドリフト検出イベント

以下は、スタックドリフト検出イベントの例です。このイベントは、CloudFormation が指定されたスタックのドリフト検出を完了したこと、および 1 つのドリフトされたリソースによるスタックの現在のドリフトステータスが DRIFTED であることを詳述します。

{ "version":"0", "id":"6a7e8feb-b491-4cf7-a9f1-bf3703467718", "detail-type":"CloudFormation Drift Detection Status Change", "source":"aws.cloudformation", "account":"111122223333", "time":"2017-12-22T18:43:48Z", "region":"us-west-1", "resources": ["string"], "detail":{ "stack-id":"arn:aws:cloudformation:us-west-1:111122223333:stack/teststack", "stack-drift-detection-id":"624af370-311a-11e8-b6b7-500cexample", "status-details":{ "stack-drift-status":"DRIFTED", "detection-status":"DETECTION_COMPLETE" }, "drift-detection-details":{ "drifted-stack-resource-count":1 }, "client-request-token":"" } }