

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 알림 규칙 보기
<a name="notification-rule-view"></a>

개발자 도구 콘솔 또는 AWS CLI 를 사용하여 AWS 리전의 모든 리소스에 대한 모든 알림 규칙을 볼 수 있습니다. 각 알림 규칙의 세부 정보도 볼 수 있습니다. 알림 규칙을 생성하는 프로세스와 달리 리소스에 대한 리소스 페이지로 이동할 필요가 없습니다.<a name="notification-rule-view-console"></a>

# 알림 규칙을 보려면(콘솔)
<a name="notification-rule-view-console"></a>

1. [https://console.aws.amazon.com/codesuite/settings/notifications](https://console.aws.amazon.com/codesuite/settings/notifications/) AWS 개발자 도구 콘솔을 엽니다.

1. 탐색 창에서 **설정**을 선택한 다음 **Notification rules(알림 규칙)**를 선택합니다.

1. **알림 규칙**에서 현재 로그인 AWS 리전 한의 리소스 AWS 계정 에 대해 구성된 규칙 목록을 검토합니다. 선택기를 사용하여 AWS 리전을 변경합니다.

1. 알림 규칙의 세부 정보를 보려면 목록에서 규칙을 선택한 다음 **세부 정보 보기**를 선택합니다. 목록에서 단순히 이름을 선택할 수도 있습니다.<a name="notification-rule-view-list-cli"></a>

# 알림 규칙 목록을 보려면(AWS CLI)
<a name="notification-rule-view-list-cli"></a>

1. 터미널 또는 명령 프롬프트에서 **list-notification-rules** 명령을 실행하여 지정된 AWS 리전에 대한 모든 알림 규칙을 확인합니다.

   ```
   aws codestar-notifications list-notification-rules --region us-east-1
   ```

1. 성공하면이 명령은 다음과 같이 AWS 리전의 각 알림 규칙에 대한 ID 및 ARN을 반환합니다.

   ```
   {
       "NotificationRules": [
           {
               "Id": "dc82df7a-EXAMPLE",
               "Arn": "arn:aws:codestar-notifications:us-east-1:123456789012:notificationrule/dc82df7a-EXAMPLE"
           },
           {
               "Id": "8d1f0983-EXAMPLE",
               "Arn": "arn:aws:codestar-notifications:us-east-1:123456789012:notificationrule/8d1f0983-EXAMPLE"
           }
       ]
   }
   ```<a name="notification-rule-view-details-cli"></a>

# 알림 규칙의 세부 정보를 보려면(AWS CLI)
<a name="notification-rule-view-details-cli"></a>

1. 터미널 또는 명령 프롬프트에서 **describe-notification-rule** 명령을 실행하여 알림 규칙의 ARN을 지정합니다.

   ```
   aws codestar-notifications describe-notification-rule --arn arn:aws:codestar-notifications:us-east-1:123456789012:notificationrule/dc82df7a-EXAMPLE
   ```

1. 이 작업이 성공하면 다음과 비슷한 출력이 반환됩니다.

   ```
   {
       "LastModifiedTimestamp": 1569199844.857,
       "EventTypes": [
           {
               "ServiceName": "CodeCommit",
               "EventTypeName": "Branches and tags: Created",
               "ResourceType": "Repository",
               "EventTypeId": "codecommit-repository-branches-and-tags-created"
           }
       ],
       "Status": "ENABLED",
       "DetailType": "FULL",
       "Resource": "arn:aws:codecommit:us-east-1:123456789012:MyDemoRepo",
       "Arn": "arn:aws:codestar-notifications:us-east-1:123456789012:notificationrule/dc82df7a-EXAMPLE",
       "Targets": [
           {
               "TargetStatus": "ACTIVE",
               "TargetAddress": "arn:aws:sns:us-east-1:123456789012:MyNotificationTopic",
               "TargetType": "SNS"
           }
       ],
       "Name": "MyNotificationRule",
       "CreatedTimestamp": 1569199844.857,
       "CreatedBy": "arn:aws:iam::123456789012:user/Mary_Major"
   }
   ```<a name="notification-rule-view-tags-cli"></a>

# 알림 규칙에 대한 태그 목록을 보려면(AWS CLI)
<a name="notification-rule-view-tags-cli"></a>

1. 터미널 또는 명령 프롬프트에서 **list-tags-for-resource** 명령을 실행하여 지정된 알림 규칙 ARN에 대한 모든 태그를 봅니다.

   ```
   aws codestar-notifications list-tags-for-resource --arn arn:aws:codestar-notifications:us-east-1:123456789012:notificationrule/fe1efd35-EXAMPLE
   ```

1. 이 명령이 성공하면 다음과 비슷한 출력이 반환됩니다.

   ```
   {
       "Tags": {
           "Team": "Li_Juan"
       }
   }
   ```