Show / Hide Table of Contents

Class CfnBudget.SpendProperty

The amount of cost or usage that's measured for a budget.

Inheritance
object
CfnBudget.SpendProperty
Implements
CfnBudget.ISpendProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBudget.SpendProperty : CfnBudget.ISpendProperty
Syntax (vb)
Public Class CfnBudget.SpendProperty Implements CfnBudget.ISpendProperty
Remarks

Cost example: A Spend for 3 USD of costs has the following parameters:

    Usage example: A Spend for 3 GB of S3 usage has the following parameters:

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.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 spendProperty = new SpendProperty {
                       Amount = 123,
                       Unit = "unit"
                   };

      Synopsis

      Constructors

      SpendProperty()

      The amount of cost or usage that's measured for a budget.

      Properties

      Amount

      The cost or usage amount that's associated with a budget forecast, actual spend, or budget threshold.

      Unit

      The unit of measurement that's used for the budget forecast, actual spend, or budget threshold.

      Constructors

      SpendProperty()

      The amount of cost or usage that's measured for a budget.

      public SpendProperty()
      Remarks

      Cost example: A Spend for 3 USD of costs has the following parameters:

        Usage example: A Spend for 3 GB of S3 usage has the following parameters:

          See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.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 spendProperty = new SpendProperty {
                           Amount = 123,
                           Unit = "unit"
                       };

          Properties

          Amount

          The cost or usage amount that's associated with a budget forecast, actual spend, or budget threshold.

          public double Amount { get; set; }
          Property Value

          double

          Remarks

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

          Unit

          The unit of measurement that's used for the budget forecast, actual spend, or budget threshold.

          public string Unit { get; set; }
          Property Value

          string

          Remarks

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

          Implements

          CfnBudget.ISpendProperty
          Back to top Generated by DocFX