기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
또는 와 DescribeNotificationConfigurations
AWS SDK 함께 사용 CLI
다음 코드 예제는 DescribeNotificationConfigurations
의 사용 방법을 보여 줍니다.
- CLI
-
- AWS CLI
-
예제 1: 지정된 그룹의 알림 구성을 설명하려면
이 예제에서는 지정된 Auto Scaling 그룹에 대한 알림 구성을 설명합니다.
aws autoscaling describe-notification-configurations \ --auto-scaling-group-name
my-asg
출력:
{ "NotificationConfigurations": [ { "AutoScalingGroupName": "my-asg", "NotificationType": "autoscaling:TEST_NOTIFICATION", "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic-2" }, { "AutoScalingGroupName": "my-asg", "NotificationType": "autoscaling:TEST_NOTIFICATION", "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic" } ] }
자세한 내용은 Amazon Auto Scaling 사용 설명서의 Auto Scaling 그룹이 확장될 때 Amazon SNS 알림 받기를 참조하세요. EC2 Auto Scaling
예제 1: 지정된 수의 알림 구성을 설명하려면
특정 수의 알림 구성을 반환하려면
max-items
파라미터를 사용합니다.aws autoscaling describe-notification-configurations \ --auto-scaling-group-name
my-auto-scaling-group
\ --max-items1
출력:
{ "NotificationConfigurations": [ { "AutoScalingGroupName": "my-asg", "NotificationType": "autoscaling:TEST_NOTIFICATION", "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic-2" }, { "AutoScalingGroupName": "my-asg", "NotificationType": "autoscaling:TEST_NOTIFICATION", "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic" } ] }
출력에
NextToken
필드가 포함된 경우 알림 구성이 더 많습니다. 추가 알림 구성을 가져오려면 다음과 같이 후속 호출에서starting-token
파라미터와 함께 이 필드의 값을 사용합니다.aws autoscaling describe-notification-configurations \ --auto-scaling-group-name
my-asg
\ --starting-tokenZ3M3LMPEXAMPLE
자세한 내용은 Amazon Auto Scaling 사용 설명서의 Auto Scaling 그룹이 조정될 때 Amazon SNS 알림 받기를 참조하세요. EC2 Auto Scaling
-
자세한 API 내용은 명령 참조DescribeNotificationConfigurations
의 섹션을 참조하세요. AWS CLI
-
- PowerShell
-
- 용 도구 PowerShell
-
예제 1: 이 예제에서는 지정된 Auto Scaling 그룹과 연결된 알림 작업에 대해 설명합니다.
Get-ASNotificationConfiguration -AutoScalingGroupName my-asg | format-list
출력:
AutoScalingGroupName : my-asg NotificationType : auto-scaling:EC2_INSTANCE_LAUNCH TopicARN : arn:aws:sns:us-west-2:123456789012:my-topic AutoScalingGroupName : my-asg NotificationType : auto-scaling:EC2_INSTANCE_TERMINATE TopicARN : arn:aws:sns:us-west-2:123456789012:my-topic
예제 2: 이 예제에서는 모든 Auto Scaling 그룹과 연결된 알림 작업을 설명합니다.
Get-ASNotificationConfiguration
-
API 자세한 내용은 Cmdlet 참조DescribeNotificationConfigurations의 섹션을 참조하세요. AWS Tools for PowerShell
-
개발자 가이드 및 코드 예제의 AWS SDK 전체 목록은 섹션을 참조하세요에서 이 서비스 사용 AWS SDK. 이 주제에는 시작하기에 대한 정보와 이전 SDK 버전에 대한 세부 정보도 포함되어 있습니다.