Interface UpdateProjectRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateProjectRequest.Builder,UpdateProjectRequest>,DeviceFarmRequest.Builder,SdkBuilder<UpdateProjectRequest.Builder,UpdateProjectRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateProjectRequest
public static interface UpdateProjectRequest.Builder extends DeviceFarmRequest.Builder, SdkPojo, CopyableBuilder<UpdateProjectRequest.Builder,UpdateProjectRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateProjectRequest.Builderarn(String arn)The Amazon Resource Name (ARN) of the project whose name to update.UpdateProjectRequest.BuilderdefaultJobTimeoutMinutes(Integer defaultJobTimeoutMinutes)The number of minutes a test run in the project executes before it times out.UpdateProjectRequest.Buildername(String name)A string that represents the new name of the project that you are updating.UpdateProjectRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateProjectRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateProjectRequest.BuildervpcConfig(Consumer<VpcConfig.Builder> vpcConfig)The VPC security groups and subnets that are attached to a project.UpdateProjectRequest.BuildervpcConfig(VpcConfig vpcConfig)The VPC security groups and subnets that are attached to a project.-
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
-
arn
UpdateProjectRequest.Builder arn(String arn)
The Amazon Resource Name (ARN) of the project whose name to update.
- Parameters:
arn- The Amazon Resource Name (ARN) of the project whose name to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateProjectRequest.Builder name(String name)
A string that represents the new name of the project that you are updating.
- Parameters:
name- A string that represents the new name of the project that you are updating.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultJobTimeoutMinutes
UpdateProjectRequest.Builder defaultJobTimeoutMinutes(Integer defaultJobTimeoutMinutes)
The number of minutes a test run in the project executes before it times out.
- Parameters:
defaultJobTimeoutMinutes- The number of minutes a test run in the project executes before it times out.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfig
UpdateProjectRequest.Builder vpcConfig(VpcConfig vpcConfig)
The VPC security groups and subnets that are attached to a project.
- Parameters:
vpcConfig- The VPC security groups and subnets that are attached to a project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfig
default UpdateProjectRequest.Builder vpcConfig(Consumer<VpcConfig.Builder> vpcConfig)
The VPC security groups and subnets that are attached to a project.
This is a convenience method that creates an instance of theVpcConfig.Builderavoiding the need to create one manually viaVpcConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovpcConfig(VpcConfig).- Parameters:
vpcConfig- a consumer that will call methods onVpcConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vpcConfig(VpcConfig)
-
overrideConfiguration
UpdateProjectRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateProjectRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-