Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/awscli/examples/budgets/describe-subscribers-for-notification.rst
1567 views
**To retrieve the subscribers for a budget notification**

This example retrieves the subscribers for a Cost and Usage budget notification.

Command::

  aws budgets describe-subscribers-for-notification --account-id 111122223333 --budget-name "Example Budget" --notification NotificationType=ACTUAL,ComparisonOperator=GREATER_THAN,Threshold=80,ThresholdType=PERCENTAGE --max-results 5

Output::

 {
    "Subscribers": [
        {
            "SubscriptionType": "EMAIL",
            "Address": "[email protected]"
        },
        {
            "SubscriptionType": "EMAIL",
            "Address": "[email protected]"
        }
    ]
 }