com.pulumi.aws.budgets.inputs.BudgetAutoAdjustDataArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.budgets.inputs;
import com.pulumi.aws.budgets.inputs.BudgetAutoAdjustDataHistoricalOptionsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class BudgetAutoAdjustDataArgs extends com.pulumi.resources.ResourceArgs {
public static final BudgetAutoAdjustDataArgs Empty = new BudgetAutoAdjustDataArgs();
/**
* (Required) - The string that defines whether your budget auto-adjusts based on historical or forecasted data. Valid values: `FORECAST`,`HISTORICAL`
*
*/
@Import(name="autoAdjustType", required=true)
private Output autoAdjustType;
/**
* @return (Required) - The string that defines whether your budget auto-adjusts based on historical or forecasted data. Valid values: `FORECAST`,`HISTORICAL`
*
*/
public Output autoAdjustType() {
return this.autoAdjustType;
}
/**
* (Optional) - Configuration block of Historical Options. Required for `auto_adjust_type` of `HISTORICAL` Configuration block that defines the historical data that your auto-adjusting budget is based on.
*
*/
@Import(name="historicalOptions")
private @Nullable Output historicalOptions;
/**
* @return (Optional) - Configuration block of Historical Options. Required for `auto_adjust_type` of `HISTORICAL` Configuration block that defines the historical data that your auto-adjusting budget is based on.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy