Interface SigningPlatformOverrides.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SigningPlatformOverrides.Builder,SigningPlatformOverrides>,SdkBuilder<SigningPlatformOverrides.Builder,SigningPlatformOverrides>,SdkPojo
- Enclosing class:
- SigningPlatformOverrides
public static interface SigningPlatformOverrides.Builder extends SdkPojo, CopyableBuilder<SigningPlatformOverrides.Builder,SigningPlatformOverrides>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SigningPlatformOverrides.BuildersigningConfiguration(Consumer<SigningConfigurationOverrides.Builder> signingConfiguration)A signing configuration that overrides the default encryption or hash algorithm of a signing job.SigningPlatformOverrides.BuildersigningConfiguration(SigningConfigurationOverrides signingConfiguration)A signing configuration that overrides the default encryption or hash algorithm of a signing job.SigningPlatformOverrides.BuildersigningImageFormat(String signingImageFormat)A signed image is a JSON object.SigningPlatformOverrides.BuildersigningImageFormat(ImageFormat signingImageFormat)A signed image is a JSON object.-
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
-
signingConfiguration
SigningPlatformOverrides.Builder signingConfiguration(SigningConfigurationOverrides signingConfiguration)
A signing configuration that overrides the default encryption or hash algorithm of a signing job.
- Parameters:
signingConfiguration- A signing configuration that overrides the default encryption or hash algorithm of a signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signingConfiguration
default SigningPlatformOverrides.Builder signingConfiguration(Consumer<SigningConfigurationOverrides.Builder> signingConfiguration)
A signing configuration that overrides the default encryption or hash algorithm of a signing job.
This is a convenience method that creates an instance of theSigningConfigurationOverrides.Builderavoiding the need to create one manually viaSigningConfigurationOverrides.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosigningConfiguration(SigningConfigurationOverrides).- Parameters:
signingConfiguration- a consumer that will call methods onSigningConfigurationOverrides.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
signingConfiguration(SigningConfigurationOverrides)
-
signingImageFormat
SigningPlatformOverrides.Builder signingImageFormat(String signingImageFormat)
A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats,
JSONEmbeddedorJSONDetached. (A third format value,JSON, is reserved for future use.) WithJSONEmbedded, the signing image has the payload embedded in it. WithJSONDetached, the payload is not be embedded in the signing image.- Parameters:
signingImageFormat- A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats,JSONEmbeddedorJSONDetached. (A third format value,JSON, is reserved for future use.) WithJSONEmbedded, the signing image has the payload embedded in it. WithJSONDetached, the payload is not be embedded in the signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageFormat,ImageFormat
-
signingImageFormat
SigningPlatformOverrides.Builder signingImageFormat(ImageFormat signingImageFormat)
A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats,
JSONEmbeddedorJSONDetached. (A third format value,JSON, is reserved for future use.) WithJSONEmbedded, the signing image has the payload embedded in it. WithJSONDetached, the payload is not be embedded in the signing image.- Parameters:
signingImageFormat- A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats,JSONEmbeddedorJSONDetached. (A third format value,JSON, is reserved for future use.) WithJSONEmbedded, the signing image has the payload embedded in it. WithJSONDetached, the payload is not be embedded in the signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageFormat,ImageFormat
-
-