기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
알림 규칙 보기
개발자 도구 콘솔 또는 AWS CLI를 사용하여 AWS 리전에 있는 모든 리소스에 대한 알림 규칙을 모두 볼 수 있습니다. 각 알림 규칙의 세부 정보도 볼 수 있습니다. 알림 규칙을 생성하는 프로세스와 달리 리소스에 대한 리소스 페이지로 이동할 필요가 없습니다.
알림 규칙을 보려면(콘솔)
https://console.aws.amazon.com/codesuite/settings/notifications
에서 AWS 개발자 도구 콘솔을 엽니다. -
탐색 창에서 설정을 선택한 다음 Notification rules(알림 규칙)를 선택합니다.
-
Notification rules(알림 규칙)에서 현재 로그인한 AWS 리전의 AWS 계정에 있는 리소스에 대해 구성된 규칙 목록을 검토합니다. 선택기를 사용하여 AWS 리전을 변경합니다.
-
알림 규칙의 세부 정보를 보려면 목록에서 규칙을 선택한 다음 세부 정보 보기를 선택합니다. 목록에서 단순히 이름을 선택할 수도 있습니다.
알림 규칙 목록을 보려면(AWS CLI)
-
터미널 또는 명령 프롬프트에서 list-notification-rules 명령을 실행하여 지정된 AWS 리전에 대한 모든 알림 규칙을 봅니다.
aws codestar-notifications list-notification-rules --region
us-east-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" } ] }
알림 규칙의 세부 정보를 보려면(AWS CLI)
-
터미널 또는 명령 프롬프트에서 describe-notification-rule 명령을 실행하여 알림 규칙의 ARN을 지정합니다.
aws codestar-notifications describe-notification-rule --arn arn:aws:codestar-notifications:
us-east-1
:123456789012
:notificationrule/dc82df7a-EXAMPLE -
이 작업이 성공하면 다음과 비슷한 출력이 반환됩니다.
{ "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" }
알림 규칙에 대한 태그 목록을 보려면(AWS CLI)
-
터미널 또는 명령 프롬프트에서 list-tags-for-resource 명령을 실행하여 지정된 알림 규칙 ARN에 대한 모든 태그를 봅니다.
aws codestar-notifications list-tags-for-resource --arn arn:aws:codestar-notifications:us-east-1:123456789012:notificationrule/fe1efd35-EXAMPLE
-
이 명령이 성공하면 다음과 비슷한 출력이 반환됩니다.
{ "Tags": { "Team": "Li_Juan" } }