AWS Budgets

2016/10/20 - AWS Budgets - 13 new api methods

Changes  Adds the AWS Budgets service API via AWS.Budgets.

DeleteSubscriber (new) Link ¶

Delete a Subscriber for a notification

Request Syntax

client.delete_subscriber(
    AccountId='string',
    BudgetName='string',
    Notification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    },
    Subscriber={
        'SubscriptionType': 'SNS'|'EMAIL',
        'Address': 'string'
    }
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type Notification

dict

param Notification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

type Subscriber

dict

param Subscriber

[REQUIRED] Subscriber model. Each notification may contain multiple subscribers with different addresses.

  • SubscriptionType (string) -- [REQUIRED] The subscription type of the subscriber. It can be SMS or EMAIL.

  • Address (string) -- [REQUIRED] A generic String.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of DeleteSubscriber

DescribeBudget (new) Link ¶

Get a single budget

Request Syntax

client.describe_budget(
    AccountId='string',
    BudgetName='string'
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

rtype

dict

returns

Response Syntax

{
    'Budget': {
        'BudgetName': 'string',
        'BudgetLimit': {
            'Amount': 'string',
            'Unit': 'string'
        },
        'CostFilters': {
            'string': [
                'string',
            ]
        },
        'CostTypes': {
            'IncludeTax': True|False,
            'IncludeSubscription': True|False,
            'UseBlended': True|False
        },
        'TimeUnit': 'MONTHLY'|'QUARTERLY'|'ANNUALLY',
        'TimePeriod': {
            'Start': datetime(2015, 1, 1),
            'End': datetime(2015, 1, 1)
        },
        'CalculatedSpend': {
            'ActualSpend': {
                'Amount': 'string',
                'Unit': 'string'
            },
            'ForecastedSpend': {
                'Amount': 'string',
                'Unit': 'string'
            }
        },
        'BudgetType': 'USAGE'|'COST'
    }
}

Response Structure

  • (dict) -- Response of DescribeBudget

    • Budget (dict) -- AWS Budget model

      • BudgetName (string) -- A string represents the budget name. No ":" character is allowed.

      • BudgetLimit (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

        • Amount (string) -- A string to represent NumericValue.

        • Unit (string) -- A generic String.

      • CostFilters (dict) -- A map represents the cost filters applied to the budget.

        • (string) -- A generic String.

          • (list) --

            • (string) -- A generic String.

      • CostTypes (dict) -- This includes the options for getting the cost of a budget.

        • IncludeTax (boolean) -- A generic boolean value.

        • IncludeSubscription (boolean) -- A generic boolean value.

        • UseBlended (boolean) -- A generic boolean value.

      • TimeUnit (string) -- The time unit of the budget. e.g. weekly, monthly, etc.

      • TimePeriod (dict) -- A time period indicated the start date and end date of a budget.

        • Start (datetime) -- A generic timestamp. In Java it is transformed to a Date object.

        • End (datetime) -- A generic timestamp. In Java it is transformed to a Date object.

      • CalculatedSpend (dict) -- A structure holds the actual and forecasted spend for a budget.

        • ActualSpend (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

          • Amount (string) -- A string to represent NumericValue.

          • Unit (string) -- A generic String.

        • ForecastedSpend (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

          • Amount (string) -- A string to represent NumericValue.

          • Unit (string) -- A generic String.

      • BudgetType (string) -- The type of a budget. Can be COST or USAGE.

UpdateSubscriber (new) Link ¶

Update a subscriber

Request Syntax

client.update_subscriber(
    AccountId='string',
    BudgetName='string',
    Notification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    },
    OldSubscriber={
        'SubscriptionType': 'SNS'|'EMAIL',
        'Address': 'string'
    },
    NewSubscriber={
        'SubscriptionType': 'SNS'|'EMAIL',
        'Address': 'string'
    }
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type Notification

dict

param Notification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

type OldSubscriber

dict

param OldSubscriber

[REQUIRED] Subscriber model. Each notification may contain multiple subscribers with different addresses.

  • SubscriptionType (string) -- [REQUIRED] The subscription type of the subscriber. It can be SMS or EMAIL.

  • Address (string) -- [REQUIRED] A generic String.

type NewSubscriber

dict

param NewSubscriber

[REQUIRED] Subscriber model. Each notification may contain multiple subscribers with different addresses.

  • SubscriptionType (string) -- [REQUIRED] The subscription type of the subscriber. It can be SMS or EMAIL.

  • Address (string) -- [REQUIRED] A generic String.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of UpdateSubscriber

CreateSubscriber (new) Link ¶

Create a new Subscriber for a notification

Request Syntax

client.create_subscriber(
    AccountId='string',
    BudgetName='string',
    Notification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    },
    Subscriber={
        'SubscriptionType': 'SNS'|'EMAIL',
        'Address': 'string'
    }
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type Notification

dict

param Notification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

type Subscriber

dict

param Subscriber

[REQUIRED] Subscriber model. Each notification may contain multiple subscribers with different addresses.

  • SubscriptionType (string) -- [REQUIRED] The subscription type of the subscriber. It can be SMS or EMAIL.

  • Address (string) -- [REQUIRED] A generic String.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of CreateSubscriber

CreateNotification (new) Link ¶

Create a new Notification with subscribers for a budget

Request Syntax

client.create_notification(
    AccountId='string',
    BudgetName='string',
    Notification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    },
    Subscribers=[
        {
            'SubscriptionType': 'SNS'|'EMAIL',
            'Address': 'string'
        },
    ]
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type Notification

dict

param Notification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

type Subscribers

list

param Subscribers

[REQUIRED] A list of subscribers.

  • (dict) -- Subscriber model. Each notification may contain multiple subscribers with different addresses.

    • SubscriptionType (string) -- [REQUIRED] The subscription type of the subscriber. It can be SMS or EMAIL.

    • Address (string) -- [REQUIRED] A generic String.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of CreateNotification

CreateBudget (new) Link ¶

Create a new budget

Request Syntax

client.create_budget(
    AccountId='string',
    Budget={
        'BudgetName': 'string',
        'BudgetLimit': {
            'Amount': 'string',
            'Unit': 'string'
        },
        'CostFilters': {
            'string': [
                'string',
            ]
        },
        'CostTypes': {
            'IncludeTax': True|False,
            'IncludeSubscription': True|False,
            'UseBlended': True|False
        },
        'TimeUnit': 'MONTHLY'|'QUARTERLY'|'ANNUALLY',
        'TimePeriod': {
            'Start': datetime(2015, 1, 1),
            'End': datetime(2015, 1, 1)
        },
        'CalculatedSpend': {
            'ActualSpend': {
                'Amount': 'string',
                'Unit': 'string'
            },
            'ForecastedSpend': {
                'Amount': 'string',
                'Unit': 'string'
            }
        },
        'BudgetType': 'USAGE'|'COST'
    },
    NotificationsWithSubscribers=[
        {
            'Notification': {
                'NotificationType': 'ACTUAL'|'FORECASTED',
                'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
                'Threshold': 123.0
            },
            'Subscribers': [
                {
                    'SubscriptionType': 'SNS'|'EMAIL',
                    'Address': 'string'
                },
            ]
        },
    ]
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type Budget

dict

param Budget

[REQUIRED] AWS Budget model

  • BudgetName (string) -- [REQUIRED] A string represents the budget name. No ":" character is allowed.

  • BudgetLimit (dict) -- [REQUIRED] A structure represent either a cost spend or usage spend. Contains an amount and a unit.

    • Amount (string) -- [REQUIRED] A string to represent NumericValue.

    • Unit (string) -- [REQUIRED] A generic String.

  • CostFilters (dict) -- A map represents the cost filters applied to the budget.

    • (string) -- A generic String.

      • (list) --

        • (string) -- A generic String.

  • CostTypes (dict) -- [REQUIRED] This includes the options for getting the cost of a budget.

    • IncludeTax (boolean) -- [REQUIRED] A generic boolean value.

    • IncludeSubscription (boolean) -- [REQUIRED] A generic boolean value.

    • UseBlended (boolean) -- [REQUIRED] A generic boolean value.

  • TimeUnit (string) -- [REQUIRED] The time unit of the budget. e.g. weekly, monthly, etc.

  • TimePeriod (dict) -- [REQUIRED] A time period indicated the start date and end date of a budget.

    • Start (datetime) -- [REQUIRED] A generic timestamp. In Java it is transformed to a Date object.

    • End (datetime) -- [REQUIRED] A generic timestamp. In Java it is transformed to a Date object.

  • CalculatedSpend (dict) -- A structure holds the actual and forecasted spend for a budget.

    • ActualSpend (dict) -- [REQUIRED] A structure represent either a cost spend or usage spend. Contains an amount and a unit.

      • Amount (string) -- [REQUIRED] A string to represent NumericValue.

      • Unit (string) -- [REQUIRED] A generic String.

    • ForecastedSpend (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

      • Amount (string) -- [REQUIRED] A string to represent NumericValue.

      • Unit (string) -- [REQUIRED] A generic String.

  • BudgetType (string) -- [REQUIRED] The type of a budget. Can be COST or USAGE.

type NotificationsWithSubscribers

list

param NotificationsWithSubscribers

A list of Notifications, each with a list of subscribers.

  • (dict) -- A structure to relate notification and a list of subscribers who belong to the notification.

    • Notification (dict) -- [REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

      • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

      • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

      • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

    • Subscribers (list) -- [REQUIRED] A list of subscribers.

      • (dict) -- Subscriber model. Each notification may contain multiple subscribers with different addresses.

        • SubscriptionType (string) -- [REQUIRED] The subscription type of the subscriber. It can be SMS or EMAIL.

        • Address (string) -- [REQUIRED] A generic String.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of CreateBudget

DescribeNotificationsForBudget (new) Link ¶

Get notifications of a budget

Request Syntax

client.describe_notifications_for_budget(
    AccountId='string',
    BudgetName='string',
    MaxResults=123,
    NextToken='string'
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type MaxResults

integer

param MaxResults

An integer to represent how many entries should a pagianted response contains. Maxium is set to 100.

type NextToken

string

param NextToken

A generic String.

rtype

dict

returns

Response Syntax

{
    'Notifications': [
        {
            'NotificationType': 'ACTUAL'|'FORECASTED',
            'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
            'Threshold': 123.0
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) -- Response of GetNotificationsForBudget

    • Notifications (list) -- A list of notifications.

      • (dict) -- Notification model. Each budget may contain multiple notifications with different settings.

        • NotificationType (string) -- The type of a notification. It should be ACTUAL or FORECASTED.

        • ComparisonOperator (string) -- The comparison operator of a notification. Currently we support less than, equal to and greater than.

        • Threshold (float) -- The threshold of the a notification. It should be a number between 0 and 100.

    • NextToken (string) -- A generic String.

DescribeSubscribersForNotification (new) Link ¶

Get subscribers of a notification

Request Syntax

client.describe_subscribers_for_notification(
    AccountId='string',
    BudgetName='string',
    Notification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    },
    MaxResults=123,
    NextToken='string'
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type Notification

dict

param Notification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

type MaxResults

integer

param MaxResults

An integer to represent how many entries should a pagianted response contains. Maxium is set to 100.

type NextToken

string

param NextToken

A generic String.

rtype

dict

returns

Response Syntax

{
    'Subscribers': [
        {
            'SubscriptionType': 'SNS'|'EMAIL',
            'Address': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) -- Response of DescribeSubscribersForNotification

    • Subscribers (list) -- A list of subscribers.

      • (dict) -- Subscriber model. Each notification may contain multiple subscribers with different addresses.

        • SubscriptionType (string) -- The subscription type of the subscriber. It can be SMS or EMAIL.

        • Address (string) -- A generic String.

    • NextToken (string) -- A generic String.

DescribeBudgets (new) Link ¶

Get all budgets for an account

Request Syntax

client.describe_budgets(
    AccountId='string',
    MaxResults=123,
    NextToken='string'
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type MaxResults

integer

param MaxResults

An integer to represent how many entries should a pagianted response contains. Maxium is set to 100.

type NextToken

string

param NextToken

A generic String.

rtype

dict

returns

Response Syntax

{
    'Budgets': [
        {
            'BudgetName': 'string',
            'BudgetLimit': {
                'Amount': 'string',
                'Unit': 'string'
            },
            'CostFilters': {
                'string': [
                    'string',
                ]
            },
            'CostTypes': {
                'IncludeTax': True|False,
                'IncludeSubscription': True|False,
                'UseBlended': True|False
            },
            'TimeUnit': 'MONTHLY'|'QUARTERLY'|'ANNUALLY',
            'TimePeriod': {
                'Start': datetime(2015, 1, 1),
                'End': datetime(2015, 1, 1)
            },
            'CalculatedSpend': {
                'ActualSpend': {
                    'Amount': 'string',
                    'Unit': 'string'
                },
                'ForecastedSpend': {
                    'Amount': 'string',
                    'Unit': 'string'
                }
            },
            'BudgetType': 'USAGE'|'COST'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) -- Response of DescribeBudgets

    • Budgets (list) -- A list of budgets

      • (dict) -- AWS Budget model

        • BudgetName (string) -- A string represents the budget name. No ":" character is allowed.

        • BudgetLimit (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

          • Amount (string) -- A string to represent NumericValue.

          • Unit (string) -- A generic String.

        • CostFilters (dict) -- A map represents the cost filters applied to the budget.

          • (string) -- A generic String.

            • (list) --

              • (string) -- A generic String.

        • CostTypes (dict) -- This includes the options for getting the cost of a budget.

          • IncludeTax (boolean) -- A generic boolean value.

          • IncludeSubscription (boolean) -- A generic boolean value.

          • UseBlended (boolean) -- A generic boolean value.

        • TimeUnit (string) -- The time unit of the budget. e.g. weekly, monthly, etc.

        • TimePeriod (dict) -- A time period indicated the start date and end date of a budget.

          • Start (datetime) -- A generic timestamp. In Java it is transformed to a Date object.

          • End (datetime) -- A generic timestamp. In Java it is transformed to a Date object.

        • CalculatedSpend (dict) -- A structure holds the actual and forecasted spend for a budget.

          • ActualSpend (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

            • Amount (string) -- A string to represent NumericValue.

            • Unit (string) -- A generic String.

          • ForecastedSpend (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

            • Amount (string) -- A string to represent NumericValue.

            • Unit (string) -- A generic String.

        • BudgetType (string) -- The type of a budget. Can be COST or USAGE.

    • NextToken (string) -- A generic String.

UpdateNotification (new) Link ¶

Update the information about a notification already created

Request Syntax

client.update_notification(
    AccountId='string',
    BudgetName='string',
    OldNotification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    },
    NewNotification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    }
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type OldNotification

dict

param OldNotification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

type NewNotification

dict

param NewNotification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of UpdateNotification

UpdateBudget (new) Link ¶

Update the information of a budget already created

Request Syntax

client.update_budget(
    AccountId='string',
    NewBudget={
        'BudgetName': 'string',
        'BudgetLimit': {
            'Amount': 'string',
            'Unit': 'string'
        },
        'CostFilters': {
            'string': [
                'string',
            ]
        },
        'CostTypes': {
            'IncludeTax': True|False,
            'IncludeSubscription': True|False,
            'UseBlended': True|False
        },
        'TimeUnit': 'MONTHLY'|'QUARTERLY'|'ANNUALLY',
        'TimePeriod': {
            'Start': datetime(2015, 1, 1),
            'End': datetime(2015, 1, 1)
        },
        'CalculatedSpend': {
            'ActualSpend': {
                'Amount': 'string',
                'Unit': 'string'
            },
            'ForecastedSpend': {
                'Amount': 'string',
                'Unit': 'string'
            }
        },
        'BudgetType': 'USAGE'|'COST'
    }
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type NewBudget

dict

param NewBudget

[REQUIRED] AWS Budget model

  • BudgetName (string) -- [REQUIRED] A string represents the budget name. No ":" character is allowed.

  • BudgetLimit (dict) -- [REQUIRED] A structure represent either a cost spend or usage spend. Contains an amount and a unit.

    • Amount (string) -- [REQUIRED] A string to represent NumericValue.

    • Unit (string) -- [REQUIRED] A generic String.

  • CostFilters (dict) -- A map represents the cost filters applied to the budget.

    • (string) -- A generic String.

      • (list) --

        • (string) -- A generic String.

  • CostTypes (dict) -- [REQUIRED] This includes the options for getting the cost of a budget.

    • IncludeTax (boolean) -- [REQUIRED] A generic boolean value.

    • IncludeSubscription (boolean) -- [REQUIRED] A generic boolean value.

    • UseBlended (boolean) -- [REQUIRED] A generic boolean value.

  • TimeUnit (string) -- [REQUIRED] The time unit of the budget. e.g. weekly, monthly, etc.

  • TimePeriod (dict) -- [REQUIRED] A time period indicated the start date and end date of a budget.

    • Start (datetime) -- [REQUIRED] A generic timestamp. In Java it is transformed to a Date object.

    • End (datetime) -- [REQUIRED] A generic timestamp. In Java it is transformed to a Date object.

  • CalculatedSpend (dict) -- A structure holds the actual and forecasted spend for a budget.

    • ActualSpend (dict) -- [REQUIRED] A structure represent either a cost spend or usage spend. Contains an amount and a unit.

      • Amount (string) -- [REQUIRED] A string to represent NumericValue.

      • Unit (string) -- [REQUIRED] A generic String.

    • ForecastedSpend (dict) -- A structure represent either a cost spend or usage spend. Contains an amount and a unit.

      • Amount (string) -- [REQUIRED] A string to represent NumericValue.

      • Unit (string) -- [REQUIRED] A generic String.

  • BudgetType (string) -- [REQUIRED] The type of a budget. Can be COST or USAGE.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of UpdateBudget

DeleteNotification (new) Link ¶

Delete a notification and related subscribers

Request Syntax

client.delete_notification(
    AccountId='string',
    BudgetName='string',
    Notification={
        'NotificationType': 'ACTUAL'|'FORECASTED',
        'ComparisonOperator': 'GREATER_THAN'|'LESS_THAN'|'EQUAL_TO',
        'Threshold': 123.0
    }
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

type Notification

dict

param Notification

[REQUIRED] Notification model. Each budget may contain multiple notifications with different settings.

  • NotificationType (string) -- [REQUIRED] The type of a notification. It should be ACTUAL or FORECASTED.

  • ComparisonOperator (string) -- [REQUIRED] The comparison operator of a notification. Currently we support less than, equal to and greater than.

  • Threshold (float) -- [REQUIRED] The threshold of the a notification. It should be a number between 0 and 100.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of DeleteNotification

DeleteBudget (new) Link ¶

Delete a budget and related notifications

Request Syntax

client.delete_budget(
    AccountId='string',
    BudgetName='string'
)
type AccountId

string

param AccountId

[REQUIRED] Account Id of the customer. It should be a 12 digit number.

type BudgetName

string

param BudgetName

[REQUIRED] A string represents the budget name. No ":" character is allowed.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) -- Response of DeleteBudget