

# StackSet 상태 변경 이벤트 세부 정보
<a name="event-detail-stackset-status-change"></a>

다음은 StackSet 상태 변경 이벤트의 세부 정보 필드입니다.

`source` 및 `detail-type` 필드는 이벤트에 대한 특정 값을 포함하므로 포함됩니다.

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

`detail-type`  <a name="stackset-status-change-detail-type"></a>
이벤트의 유형을 식별합니다.  
StackSet 상태 이벤트 이벤트의 경우 이 값은 `CloudFormation StackSet Status Change`입니다.

`source`  <a name="stackset-status-change-source"></a>
이벤트를 생성한 서비스를 식별합니다. CloudFormation 이벤트의 경우 이 값은 `aws.cloudformation`입니다.

`detail`  <a name="stackset-status-change-detail"></a>
이벤트에 대한 정보를 포함하는 JSON 객체입니다. 이벤트를 생성하는 서비스에 따라 이 필드의 내용이 결정됩니다.  
StackSet 상태 이벤트 이벤트의 경우 이 데이터는 다음을 포함합니다.    
`stack-set-arn`  <a name="stackset-status-change-stack-set-arn"></a>
스택 세트와 연결된 Amazon 리소스 이름(ARN)입니다.  
`status-details`  <a name="stackset-status-change-status-details"></a>  
`status`  <a name="stackset-status-change-status"></a>
StackSet 상태입니다.  
유효한 값**: `ACTIVE` \$1 `DELETED`

**Example 예: StackSet 상태 변경 이벤트**  <a name="event-detail-stackset-status-change.example"></a>
다음은 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"
    }
  }
}
```