Interface UpdateDevicesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateDevicesRequest.Builder,UpdateDevicesRequest>,SageMakerRequest.Builder,SdkBuilder<UpdateDevicesRequest.Builder,UpdateDevicesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateDevicesRequest
public static interface UpdateDevicesRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<UpdateDevicesRequest.Builder,UpdateDevicesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateDevicesRequest.BuilderdeviceFleetName(String deviceFleetName)The name of the fleet the devices belong to.UpdateDevicesRequest.Builderdevices(Collection<Device> devices)List of devices to register with Edge Manager agent.UpdateDevicesRequest.Builderdevices(Consumer<Device.Builder>... devices)List of devices to register with Edge Manager agent.UpdateDevicesRequest.Builderdevices(Device... devices)List of devices to register with Edge Manager agent.UpdateDevicesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateDevicesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerRequest.Builder
build
-
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
-
deviceFleetName
UpdateDevicesRequest.Builder deviceFleetName(String deviceFleetName)
The name of the fleet the devices belong to.
- Parameters:
deviceFleetName- The name of the fleet the devices belong to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
devices
UpdateDevicesRequest.Builder devices(Collection<Device> devices)
List of devices to register with Edge Manager agent.
- Parameters:
devices- List of devices to register with Edge Manager agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
devices
UpdateDevicesRequest.Builder devices(Device... devices)
List of devices to register with Edge Manager agent.
- Parameters:
devices- List of devices to register with Edge Manager agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
devices
UpdateDevicesRequest.Builder devices(Consumer<Device.Builder>... devices)
List of devices to register with Edge Manager agent.
This is a convenience method that creates an instance of theDevice.Builderavoiding the need to create one manually viaDevice.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#devices(List.) - Parameters:
devices- a consumer that will call methods onDevice.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#devices(java.util.Collection)
-
overrideConfiguration
UpdateDevicesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateDevicesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-