Interface GroupConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GroupConfiguration.Builder,GroupConfiguration>,SdkBuilder<GroupConfiguration.Builder,GroupConfiguration>,SdkPojo
- Enclosing class:
- GroupConfiguration
public static interface GroupConfiguration.Builder extends SdkPojo, CopyableBuilder<GroupConfiguration.Builder,GroupConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupConfiguration.Builderconfiguration(Collection<GroupConfigurationItem> configuration)The configuration currently associated with the group and in effect.GroupConfiguration.Builderconfiguration(Consumer<GroupConfigurationItem.Builder>... configuration)The configuration currently associated with the group and in effect.GroupConfiguration.Builderconfiguration(GroupConfigurationItem... configuration)The configuration currently associated with the group and in effect.GroupConfiguration.BuilderfailureReason(String failureReason)If present, the reason why a request to update the group configuration failed.GroupConfiguration.BuilderproposedConfiguration(Collection<GroupConfigurationItem> proposedConfiguration)If present, the new configuration that is in the process of being applied to the group.GroupConfiguration.BuilderproposedConfiguration(Consumer<GroupConfigurationItem.Builder>... proposedConfiguration)If present, the new configuration that is in the process of being applied to the group.GroupConfiguration.BuilderproposedConfiguration(GroupConfigurationItem... proposedConfiguration)If present, the new configuration that is in the process of being applied to the group.GroupConfiguration.Builderstatus(String status)The current status of an attempt to update the group configuration.GroupConfiguration.Builderstatus(GroupConfigurationStatus status)The current status of an attempt to update the group configuration.-
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
-
configuration
GroupConfiguration.Builder configuration(Collection<GroupConfigurationItem> configuration)
The configuration currently associated with the group and in effect.
- Parameters:
configuration- The configuration currently associated with the group and in effect.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
GroupConfiguration.Builder configuration(GroupConfigurationItem... configuration)
The configuration currently associated with the group and in effect.
- Parameters:
configuration- The configuration currently associated with the group and in effect.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
GroupConfiguration.Builder configuration(Consumer<GroupConfigurationItem.Builder>... configuration)
The configuration currently associated with the group and in effect.
This is a convenience method that creates an instance of theGroupConfigurationItem.Builderavoiding the need to create one manually viaGroupConfigurationItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#configuration(List.) - Parameters:
configuration- a consumer that will call methods onGroupConfigurationItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#configuration(java.util.Collection)
-
proposedConfiguration
GroupConfiguration.Builder proposedConfiguration(Collection<GroupConfigurationItem> proposedConfiguration)
If present, the new configuration that is in the process of being applied to the group.
- Parameters:
proposedConfiguration- If present, the new configuration that is in the process of being applied to the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
proposedConfiguration
GroupConfiguration.Builder proposedConfiguration(GroupConfigurationItem... proposedConfiguration)
If present, the new configuration that is in the process of being applied to the group.
- Parameters:
proposedConfiguration- If present, the new configuration that is in the process of being applied to the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
proposedConfiguration
GroupConfiguration.Builder proposedConfiguration(Consumer<GroupConfigurationItem.Builder>... proposedConfiguration)
If present, the new configuration that is in the process of being applied to the group.
This is a convenience method that creates an instance of theGroupConfigurationItem.Builderavoiding the need to create one manually viaGroupConfigurationItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#proposedConfiguration(List.) - Parameters:
proposedConfiguration- a consumer that will call methods onGroupConfigurationItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#proposedConfiguration(java.util.Collection)
-
status
GroupConfiguration.Builder status(String status)
The current status of an attempt to update the group configuration.
- Parameters:
status- The current status of an attempt to update the group configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupConfigurationStatus,GroupConfigurationStatus
-
status
GroupConfiguration.Builder status(GroupConfigurationStatus status)
The current status of an attempt to update the group configuration.
- Parameters:
status- The current status of an attempt to update the group configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupConfigurationStatus,GroupConfigurationStatus
-
failureReason
GroupConfiguration.Builder failureReason(String failureReason)
If present, the reason why a request to update the group configuration failed.
- Parameters:
failureReason- If present, the reason why a request to update the group configuration failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-