Interface UpdateAttributesRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpdateAttributesRequest.Builder,UpdateAttributesRequest>,SdkBuilder<UpdateAttributesRequest.Builder,UpdateAttributesRequest>,SdkPojo
- Enclosing class:
- UpdateAttributesRequest
public static interface UpdateAttributesRequest.Builder extends SdkPojo, CopyableBuilder<UpdateAttributesRequest.Builder,UpdateAttributesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateAttributesRequest.Builderblacklist(String... blacklist)An array of the attributes to remove from all the endpoints that are associated with the application.UpdateAttributesRequest.Builderblacklist(Collection<String> blacklist)An array of the attributes to remove from all the endpoints that are associated with the application.-
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
-
blacklist
UpdateAttributesRequest.Builder blacklist(Collection<String> blacklist)
An array of the attributes to remove from all the endpoints that are associated with the application. The array can specify the complete, exact name of each attribute to remove or it can specify a glob pattern that an attribute name must match in order for the attribute to be removed.
- Parameters:
blacklist- An array of the attributes to remove from all the endpoints that are associated with the application. The array can specify the complete, exact name of each attribute to remove or it can specify a glob pattern that an attribute name must match in order for the attribute to be removed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blacklist
UpdateAttributesRequest.Builder blacklist(String... blacklist)
An array of the attributes to remove from all the endpoints that are associated with the application. The array can specify the complete, exact name of each attribute to remove or it can specify a glob pattern that an attribute name must match in order for the attribute to be removed.
- Parameters:
blacklist- An array of the attributes to remove from all the endpoints that are associated with the application. The array can specify the complete, exact name of each attribute to remove or it can specify a glob pattern that an attribute name must match in order for the attribute to be removed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-