Interface CompositeComponentUpdateRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CompositeComponentUpdateRequest.Builder,CompositeComponentUpdateRequest>,SdkBuilder<CompositeComponentUpdateRequest.Builder,CompositeComponentUpdateRequest>,SdkPojo
- Enclosing class:
- CompositeComponentUpdateRequest
public static interface CompositeComponentUpdateRequest.Builder extends SdkPojo, CopyableBuilder<CompositeComponentUpdateRequest.Builder,CompositeComponentUpdateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompositeComponentUpdateRequest.Builderdescription(String description)The description of the component type.CompositeComponentUpdateRequest.BuilderpropertyGroupUpdates(Map<String,ComponentPropertyGroupRequest> propertyGroupUpdates)The property group updates.CompositeComponentUpdateRequest.BuilderpropertyUpdates(Map<String,PropertyRequest> propertyUpdates)An object that maps strings to the properties to set in the component type update.CompositeComponentUpdateRequest.BuilderupdateType(String updateType)The update type of the component update request.CompositeComponentUpdateRequest.BuilderupdateType(ComponentUpdateType updateType)The update type of the component update request.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
updateType
CompositeComponentUpdateRequest.Builder updateType(String updateType)
The update type of the component update request.
- Parameters:
updateType- The update type of the component update request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComponentUpdateType,ComponentUpdateType
-
updateType
CompositeComponentUpdateRequest.Builder updateType(ComponentUpdateType updateType)
The update type of the component update request.
- Parameters:
updateType- The update type of the component update request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComponentUpdateType,ComponentUpdateType
-
description
CompositeComponentUpdateRequest.Builder description(String description)
The description of the component type.
- Parameters:
description- The description of the component type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyUpdates
CompositeComponentUpdateRequest.Builder propertyUpdates(Map<String,PropertyRequest> propertyUpdates)
An object that maps strings to the properties to set in the component type update. Each string in the mapping must be unique to this object.
- Parameters:
propertyUpdates- An object that maps strings to the properties to set in the component type update. Each string in the mapping must be unique to this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroupUpdates
CompositeComponentUpdateRequest.Builder propertyGroupUpdates(Map<String,ComponentPropertyGroupRequest> propertyGroupUpdates)
The property group updates.
- Parameters:
propertyGroupUpdates- The property group updates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-