Interface GroupConfigurationItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GroupConfigurationItem.Builder,GroupConfigurationItem>,SdkBuilder<GroupConfigurationItem.Builder,GroupConfigurationItem>,SdkPojo
- Enclosing class:
- GroupConfigurationItem
public static interface GroupConfigurationItem.Builder extends SdkPojo, CopyableBuilder<GroupConfigurationItem.Builder,GroupConfigurationItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupConfigurationItem.Builderparameters(Collection<GroupConfigurationParameter> parameters)A collection of parameters for this group configuration item.GroupConfigurationItem.Builderparameters(Consumer<GroupConfigurationParameter.Builder>... parameters)A collection of parameters for this group configuration item.GroupConfigurationItem.Builderparameters(GroupConfigurationParameter... parameters)A collection of parameters for this group configuration item.GroupConfigurationItem.Buildertype(String type)Specifies the type of group configuration item.-
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
-
type
GroupConfigurationItem.Builder type(String type)
Specifies the type of group configuration item. Each item must have a unique value for
type. For the list of types that you can specify for a configuration item, see Supported resource types and parameters.- Parameters:
type- Specifies the type of group configuration item. Each item must have a unique value fortype. For the list of types that you can specify for a configuration item, see Supported resource types and parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GroupConfigurationItem.Builder parameters(Collection<GroupConfigurationParameter> parameters)
A collection of parameters for this group configuration item. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.
- Parameters:
parameters- A collection of parameters for this group configuration item. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GroupConfigurationItem.Builder parameters(GroupConfigurationParameter... parameters)
A collection of parameters for this group configuration item. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.
- Parameters:
parameters- A collection of parameters for this group configuration item. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GroupConfigurationItem.Builder parameters(Consumer<GroupConfigurationParameter.Builder>... parameters)
A collection of parameters for this group configuration item. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.
This is a convenience method that creates an instance of theGroupConfigurationParameter.Builderavoiding the need to create one manually viaGroupConfigurationParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parameters(List.) - Parameters:
parameters- a consumer that will call methods onGroupConfigurationParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameters(java.util.Collection)
-
-