Interface StartSigningJobRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<StartSigningJobRequest.Builder,StartSigningJobRequest>,SdkBuilder<StartSigningJobRequest.Builder,StartSigningJobRequest>,SdkPojo,SdkRequest.Builder,SignerRequest.Builder
- Enclosing class:
- StartSigningJobRequest
public static interface StartSigningJobRequest.Builder extends SignerRequest.Builder, SdkPojo, CopyableBuilder<StartSigningJobRequest.Builder,StartSigningJobRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StartSigningJobRequest.BuilderclientRequestToken(String clientRequestToken)String that identifies the signing request.default StartSigningJobRequest.Builderdestination(Consumer<Destination.Builder> destination)The S3 bucket in which to save your signed object.StartSigningJobRequest.Builderdestination(Destination destination)The S3 bucket in which to save your signed object.StartSigningJobRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)StartSigningJobRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)StartSigningJobRequest.BuilderprofileName(String profileName)The name of the signing profile.StartSigningJobRequest.BuilderprofileOwner(String profileOwner)The AWS account ID of the signing profile owner.default StartSigningJobRequest.Buildersource(Consumer<Source.Builder> source)The S3 bucket that contains the object to sign or a BLOB that contains your raw code.StartSigningJobRequest.Buildersource(Source source)The S3 bucket that contains the object to sign or a BLOB that contains your raw code.-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.signer.model.SignerRequest.Builder
build
-
-
-
-
Method Detail
-
source
StartSigningJobRequest.Builder source(Source source)
The S3 bucket that contains the object to sign or a BLOB that contains your raw code.
- Parameters:
source- The S3 bucket that contains the object to sign or a BLOB that contains your raw code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
default StartSigningJobRequest.Builder source(Consumer<Source.Builder> source)
The S3 bucket that contains the object to sign or a BLOB that contains your raw code.
This is a convenience method that creates an instance of theSource.Builderavoiding the need to create one manually viaSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosource(Source).- Parameters:
source- a consumer that will call methods onSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
source(Source)
-
destination
StartSigningJobRequest.Builder destination(Destination destination)
The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.
- Parameters:
destination- The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default StartSigningJobRequest.Builder destination(Consumer<Destination.Builder> destination)
The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.
This is a convenience method that creates an instance of theDestination.Builderavoiding the need to create one manually viaDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(Destination).- Parameters:
destination- a consumer that will call methods onDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(Destination)
-
profileName
StartSigningJobRequest.Builder profileName(String profileName)
The name of the signing profile.
- Parameters:
profileName- The name of the signing profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientRequestToken
StartSigningJobRequest.Builder clientRequestToken(String clientRequestToken)
String that identifies the signing request. All calls after the first that use this token return the same response as the first call.
- Parameters:
clientRequestToken- String that identifies the signing request. All calls after the first that use this token return the same response as the first call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileOwner
StartSigningJobRequest.Builder profileOwner(String profileOwner)
The AWS account ID of the signing profile owner.
- Parameters:
profileOwner- The AWS account ID of the signing profile owner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
StartSigningJobRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
StartSigningJobRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-