Show / Hide Table of Contents

Interface CfnBudget.IAutoAdjustDataProperty

Determine the budget amount for an auto-adjusting budget.

Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBudget.IAutoAdjustDataProperty
Syntax (vb)
Public Interface CfnBudget.IAutoAdjustDataProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-autoadjustdata.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Budgets;

             var autoAdjustDataProperty = new AutoAdjustDataProperty {
                 AutoAdjustType = "autoAdjustType",

                 // the properties below are optional
                 HistoricalOptions = new HistoricalOptionsProperty {
                     BudgetAdjustmentPeriod = 123
                 }
             };

Synopsis

Properties

AutoAdjustType

The string that defines whether your budget auto-adjusts based on historical or forecasted data.

HistoricalOptions

The parameters that define or describe the historical data that your auto-adjusting budget is based on.

Properties

AutoAdjustType

The string that defines whether your budget auto-adjusts based on historical or forecasted data.

string AutoAdjustType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-autoadjustdata.html#cfn-budgets-budget-autoadjustdata-autoadjusttype

HistoricalOptions

The parameters that define or describe the historical data that your auto-adjusting budget is based on.

object? HistoricalOptions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-autoadjustdata.html#cfn-budgets-budget-autoadjustdata-historicaloptions

Type union: either IResolvable or CfnBudget.IHistoricalOptionsProperty

Back to top Generated by DocFX