Interface AccountAttribute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccountAttribute.Builder,AccountAttribute>,SdkBuilder<AccountAttribute.Builder,AccountAttribute>,SdkPojo
- Enclosing class:
- AccountAttribute
public static interface AccountAttribute.Builder extends SdkPojo, CopyableBuilder<AccountAttribute.Builder,AccountAttribute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountAttribute.Buildermaximum(Integer maximum)The maximum allowed value.AccountAttribute.Buildername(String name)The attribute name.AccountAttribute.Builderused(Integer used)The current usage, such as the current number of servers that are associated with the account.-
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
-
name
AccountAttribute.Builder name(String name)
The attribute name. The following are supported attribute names.
-
ServerLimit: The number of current servers/maximum number of servers allowed. By default, you can have a maximum of 10 servers.
-
ManualBackupLimit: The number of current manual backups/maximum number of backups allowed. By default, you can have a maximum of 50 manual backups saved.
- Parameters:
name- The attribute name. The following are supported attribute names.-
ServerLimit: The number of current servers/maximum number of servers allowed. By default, you can have a maximum of 10 servers.
-
ManualBackupLimit: The number of current manual backups/maximum number of backups allowed. By default, you can have a maximum of 50 manual backups saved.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
maximum
AccountAttribute.Builder maximum(Integer maximum)
The maximum allowed value.
- Parameters:
maximum- The maximum allowed value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
used
AccountAttribute.Builder used(Integer used)
The current usage, such as the current number of servers that are associated with the account.
- Parameters:
used- The current usage, such as the current number of servers that are associated with the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-