Interface AccountLimit.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccountLimit.Builder,AccountLimit>,SdkBuilder<AccountLimit.Builder,AccountLimit>,SdkPojo
- Enclosing class:
- AccountLimit
public static interface AccountLimit.Builder extends SdkPojo, CopyableBuilder<AccountLimit.Builder,AccountLimit>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountLimit.Buildermax(Long max)The Amazon Web Services set limit for that resource type, in US dollars.AccountLimit.Buildername(String name)The name of the attribute to apply the account limit to.AccountLimit.Buildername(AccountLimitName name)The name of the attribute to apply the account limit to.AccountLimit.Builderused(Long used)The current amount that has been spent, in US dollars.-
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, sdkFields
-
-
-
-
Method Detail
-
name
AccountLimit.Builder name(String name)
The name of the attribute to apply the account limit to.
- Parameters:
name- The name of the attribute to apply the account limit to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccountLimitName,AccountLimitName
-
name
AccountLimit.Builder name(AccountLimitName name)
The name of the attribute to apply the account limit to.
- Parameters:
name- The name of the attribute to apply the account limit to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccountLimitName,AccountLimitName
-
used
AccountLimit.Builder used(Long used)
The current amount that has been spent, in US dollars.
- Parameters:
used- The current amount that has been spent, in US dollars.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
AccountLimit.Builder max(Long max)
The Amazon Web Services set limit for that resource type, in US dollars.
- Parameters:
max- The Amazon Web Services set limit for that resource type, in US dollars.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-