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