Interface UpdateUploadRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateUploadRequest.Builder,UpdateUploadRequest>,DeviceFarmRequest.Builder,SdkBuilder<UpdateUploadRequest.Builder,UpdateUploadRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateUploadRequest
public static interface UpdateUploadRequest.Builder extends DeviceFarmRequest.Builder, SdkPojo, CopyableBuilder<UpdateUploadRequest.Builder,UpdateUploadRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateUploadRequest.Builderarn(String arn)The Amazon Resource Name (ARN) of the uploaded test spec.UpdateUploadRequest.BuildercontentType(String contentType)The upload's content type (for example,application/x-yaml).UpdateUploadRequest.BuildereditContent(Boolean editContent)Set to true if the YAML file has changed and must be updated.UpdateUploadRequest.Buildername(String name)The upload's test spec file name.UpdateUploadRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateUploadRequest.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.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
UpdateUploadRequest.Builder arn(String arn)
The Amazon Resource Name (ARN) of the uploaded test spec.
- Parameters:
arn- The Amazon Resource Name (ARN) of the uploaded test spec.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateUploadRequest.Builder name(String name)
The upload's test spec file name. The name must not contain any forward slashes (/). The test spec file name must end with the
.yamlor.ymlfile extension.- Parameters:
name- The upload's test spec file name. The name must not contain any forward slashes (/). The test spec file name must end with the.yamlor.ymlfile extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contentType
UpdateUploadRequest.Builder contentType(String contentType)
The upload's content type (for example,
application/x-yaml).- Parameters:
contentType- The upload's content type (for example,application/x-yaml).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
editContent
UpdateUploadRequest.Builder editContent(Boolean editContent)
Set to true if the YAML file has changed and must be updated. Otherwise, set to false.
- Parameters:
editContent- Set to true if the YAML file has changed and must be updated. Otherwise, set to false.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateUploadRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateUploadRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-