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.Buildername(String name)The name of the account attribute.AccountAttribute.Buildername(AccountAttributeName name)The name of the account attribute.AccountAttribute.Buildervalue(String value)The value associated with the account attribute name.-
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
AccountAttribute.Builder name(String name)
The name of the account attribute.
- Parameters:
name- The name of the account attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccountAttributeName,AccountAttributeName
-
name
AccountAttribute.Builder name(AccountAttributeName name)
The name of the account attribute.
- Parameters:
name- The name of the account attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccountAttributeName,AccountAttributeName
-
value
AccountAttribute.Builder value(String value)
The value associated with the account attribute name.
- Parameters:
value- The value associated with the account attribute name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-