Interface StartSigningJobParameter.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<StartSigningJobParameter.Builder,StartSigningJobParameter>
,SdkBuilder<StartSigningJobParameter.Builder,StartSigningJobParameter>
,SdkPojo
- Enclosing class:
- StartSigningJobParameter
public static interface StartSigningJobParameter.Builder extends SdkPojo, CopyableBuilder<StartSigningJobParameter.Builder,StartSigningJobParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StartSigningJobParameter.Builder
destination(Consumer<Destination.Builder> destination)
The location to write the code-signed file.StartSigningJobParameter.Builder
destination(Destination destination)
The location to write the code-signed file.StartSigningJobParameter.Builder
signingProfileName(String signingProfileName)
The code-signing profile name.default StartSigningJobParameter.Builder
signingProfileParameter(Consumer<SigningProfileParameter.Builder> signingProfileParameter)
Describes the code-signing profile.StartSigningJobParameter.Builder
signingProfileParameter(SigningProfileParameter signingProfileParameter)
Describes the code-signing profile.-
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
-
-
-
-
Method Detail
-
signingProfileParameter
StartSigningJobParameter.Builder signingProfileParameter(SigningProfileParameter signingProfileParameter)
Describes the code-signing profile.
- Parameters:
signingProfileParameter
- Describes the code-signing profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signingProfileParameter
default StartSigningJobParameter.Builder signingProfileParameter(Consumer<SigningProfileParameter.Builder> signingProfileParameter)
Describes the code-signing profile.
This is a convenience method that creates an instance of theSigningProfileParameter.Builder
avoiding the need to create one manually viaSigningProfileParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosigningProfileParameter(SigningProfileParameter)
.- Parameters:
signingProfileParameter
- a consumer that will call methods onSigningProfileParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
signingProfileParameter(SigningProfileParameter)
-
signingProfileName
StartSigningJobParameter.Builder signingProfileName(String signingProfileName)
The code-signing profile name.
- Parameters:
signingProfileName
- The code-signing profile name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
StartSigningJobParameter.Builder destination(Destination destination)
The location to write the code-signed file.
- Parameters:
destination
- The location to write the code-signed file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default StartSigningJobParameter.Builder destination(Consumer<Destination.Builder> destination)
The location to write the code-signed file.
This is a convenience method that creates an instance of theDestination.Builder
avoiding the need to create one manually viaDestination.builder()
.When the
Consumer
completes,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)
-
-