Interface UserPendingChanges.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserPendingChanges.Builder,UserPendingChanges>,SdkBuilder<UserPendingChanges.Builder,UserPendingChanges>,SdkPojo
- Enclosing class:
- UserPendingChanges
public static interface UserPendingChanges.Builder extends SdkPojo, CopyableBuilder<UserPendingChanges.Builder,UserPendingChanges>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserPendingChanges.BuilderconsoleAccess(Boolean consoleAccess)Enables access to the the ActiveMQ Web Console for the ActiveMQ user.UserPendingChanges.Buildergroups(String... groups)The list of groups (20 maximum) to which the ActiveMQ user belongs.UserPendingChanges.Buildergroups(Collection<String> groups)The list of groups (20 maximum) to which the ActiveMQ user belongs.UserPendingChanges.BuilderpendingChange(String pendingChange)Required.UserPendingChanges.BuilderpendingChange(ChangeType pendingChange)Required.-
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
-
consoleAccess
UserPendingChanges.Builder consoleAccess(Boolean consoleAccess)
Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
- Parameters:
consoleAccess- Enables access to the the ActiveMQ Web Console for the ActiveMQ user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groups
UserPendingChanges.Builder groups(Collection<String> groups)
The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
- Parameters:
groups- The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groups
UserPendingChanges.Builder groups(String... groups)
The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
- Parameters:
groups- The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pendingChange
UserPendingChanges.Builder pendingChange(String pendingChange)
Required. The type of change pending for the ActiveMQ user.
- Parameters:
pendingChange- Required. The type of change pending for the ActiveMQ user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeType,ChangeType
-
pendingChange
UserPendingChanges.Builder pendingChange(ChangeType pendingChange)
Required. The type of change pending for the ActiveMQ user.
- Parameters:
pendingChange- Required. The type of change pending for the ActiveMQ user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeType,ChangeType
-
-