Interface CreateDevicePoolRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateDevicePoolRequest.Builder,CreateDevicePoolRequest>,DeviceFarmRequest.Builder,SdkBuilder<CreateDevicePoolRequest.Builder,CreateDevicePoolRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateDevicePoolRequest
public static interface CreateDevicePoolRequest.Builder extends DeviceFarmRequest.Builder, SdkPojo, CopyableBuilder<CreateDevicePoolRequest.Builder,CreateDevicePoolRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateDevicePoolRequest.Builderdescription(String description)The device pool's description.CreateDevicePoolRequest.BuildermaxDevices(Integer maxDevices)The number of devices that Device Farm can add to your device pool.CreateDevicePoolRequest.Buildername(String name)The device pool's name.CreateDevicePoolRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateDevicePoolRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateDevicePoolRequest.BuilderprojectArn(String projectArn)The ARN of the project for the device pool.CreateDevicePoolRequest.Builderrules(Collection<Rule> rules)The device pool's rules.CreateDevicePoolRequest.Builderrules(Consumer<Rule.Builder>... rules)The device pool's rules.CreateDevicePoolRequest.Builderrules(Rule... rules)The device pool's rules.-
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.devicefarm.model.DeviceFarmRequest.Builder
build
-
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
-
projectArn
CreateDevicePoolRequest.Builder projectArn(String projectArn)
The ARN of the project for the device pool.
- Parameters:
projectArn- The ARN of the project for the device pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateDevicePoolRequest.Builder name(String name)
The device pool's name.
- Parameters:
name- The device pool's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateDevicePoolRequest.Builder description(String description)
The device pool's description.
- Parameters:
description- The device pool's description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rules
CreateDevicePoolRequest.Builder rules(Collection<Rule> rules)
The device pool's rules.
- Parameters:
rules- The device pool's rules.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rules
CreateDevicePoolRequest.Builder rules(Rule... rules)
The device pool's rules.
- Parameters:
rules- The device pool's rules.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rules
CreateDevicePoolRequest.Builder rules(Consumer<Rule.Builder>... rules)
The device pool's rules.
This is a convenience method that creates an instance of theRule.Builderavoiding the need to create one manually viaRule.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#rules(List.) - Parameters:
rules- a consumer that will call methods onRule.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#rules(java.util.Collection)
-
maxDevices
CreateDevicePoolRequest.Builder maxDevices(Integer maxDevices)
The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and meet the criteria that you assign for the
rulesparameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.By specifying the maximum number of devices, you can control the costs that you incur by running tests.
- Parameters:
maxDevices- The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and meet the criteria that you assign for therulesparameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.By specifying the maximum number of devices, you can control the costs that you incur by running tests.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateDevicePoolRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateDevicePoolRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-