Interface BillingBudgetAmountSpecifiedAmount
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BillingBudgetAmountSpecifiedAmount.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:17.818Z") @Stability(Stable) public interface BillingBudgetAmountSpecifiedAmount extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classBillingBudgetAmountSpecifiedAmount.BuilderA builder forBillingBudgetAmountSpecifiedAmountstatic classBillingBudgetAmountSpecifiedAmount.Jsii$ProxyAn implementation forBillingBudgetAmountSpecifiedAmount
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static BillingBudgetAmountSpecifiedAmount.Builderbuilder()default StringgetCurrencyCode()The 3-letter currency code defined in ISO 4217.default NumbergetNanos()Number of nano (10^-9) units of the amount.default StringgetUnits()The whole units of the amount.
-
-
-
Method Detail
-
getCurrencyCode
@Stability(Stable) @Nullable default String getCurrencyCode()
The 3-letter currency code defined in ISO 4217.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/billing_budget#currency_code BillingBudget#currency_code}
-
getNanos
@Stability(Stable) @Nullable default Number getNanos()
Number of nano (10^-9) units of the amount.The value must be between -999,999,999 and +999,999,999 inclusive. If units is positive, nanos must be positive or zero. If units is zero, nanos can be positive, zero, or negative. If units is negative, nanos must be negative or zero. For example $-1.75 is represented as units=-1 and nanos=-750,000,000. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/billing_budget#nanos BillingBudget#nanos}
-
getUnits
@Stability(Stable) @Nullable default String getUnits()
The whole units of the amount. For example if currencyCode is "USD", then 1 unit is one US dollar.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/billing_budget#units BillingBudget#units}
-
builder
@Stability(Stable) static BillingBudgetAmountSpecifiedAmount.Builder builder()
-
-