Interface AutoAdjustData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoAdjustData.Builder,AutoAdjustData>,SdkBuilder<AutoAdjustData.Builder,AutoAdjustData>,SdkPojo
- Enclosing class:
- AutoAdjustData
public static interface AutoAdjustData.Builder extends SdkPojo, CopyableBuilder<AutoAdjustData.Builder,AutoAdjustData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AutoAdjustData.BuilderautoAdjustType(String autoAdjustType)The string that defines whether your budget auto-adjusts based on historical or forecasted data.AutoAdjustData.BuilderautoAdjustType(AutoAdjustType autoAdjustType)The string that defines whether your budget auto-adjusts based on historical or forecasted data.default AutoAdjustData.BuilderhistoricalOptions(Consumer<HistoricalOptions.Builder> historicalOptions)The parameters that define or describe the historical data that your auto-adjusting budget is based on.AutoAdjustData.BuilderhistoricalOptions(HistoricalOptions historicalOptions)The parameters that define or describe the historical data that your auto-adjusting budget is based on.AutoAdjustData.BuilderlastAutoAdjustTime(Instant lastAutoAdjustTime)The last time that your budget was auto-adjusted.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
autoAdjustType
AutoAdjustData.Builder autoAdjustType(String autoAdjustType)
The string that defines whether your budget auto-adjusts based on historical or forecasted data.
- Parameters:
autoAdjustType- The string that defines whether your budget auto-adjusts based on historical or forecasted data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoAdjustType,AutoAdjustType
-
autoAdjustType
AutoAdjustData.Builder autoAdjustType(AutoAdjustType autoAdjustType)
The string that defines whether your budget auto-adjusts based on historical or forecasted data.
- Parameters:
autoAdjustType- The string that defines whether your budget auto-adjusts based on historical or forecasted data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoAdjustType,AutoAdjustType
-
historicalOptions
AutoAdjustData.Builder historicalOptions(HistoricalOptions historicalOptions)
The parameters that define or describe the historical data that your auto-adjusting budget is based on.
- Parameters:
historicalOptions- The parameters that define or describe the historical data that your auto-adjusting budget is based on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
historicalOptions
default AutoAdjustData.Builder historicalOptions(Consumer<HistoricalOptions.Builder> historicalOptions)
The parameters that define or describe the historical data that your auto-adjusting budget is based on.
This is a convenience method that creates an instance of theHistoricalOptions.Builderavoiding the need to create one manually viaHistoricalOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohistoricalOptions(HistoricalOptions).- Parameters:
historicalOptions- a consumer that will call methods onHistoricalOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
historicalOptions(HistoricalOptions)
-
lastAutoAdjustTime
AutoAdjustData.Builder lastAutoAdjustTime(Instant lastAutoAdjustTime)
The last time that your budget was auto-adjusted.
- Parameters:
lastAutoAdjustTime- The last time that your budget was auto-adjusted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-