Interface SigningConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SigningConfiguration.Builder,SigningConfiguration>,SdkBuilder<SigningConfiguration.Builder,SigningConfiguration>,SdkPojo
- Enclosing class:
- SigningConfiguration
public static interface SigningConfiguration.Builder extends SdkPojo, CopyableBuilder<SigningConfiguration.Builder,SigningConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SigningConfiguration.BuilderencryptionAlgorithmOptions(Consumer<EncryptionAlgorithmOptions.Builder> encryptionAlgorithmOptions)The encryption algorithm options that are available for a code-signing job.SigningConfiguration.BuilderencryptionAlgorithmOptions(EncryptionAlgorithmOptions encryptionAlgorithmOptions)The encryption algorithm options that are available for a code-signing job.default SigningConfiguration.BuilderhashAlgorithmOptions(Consumer<HashAlgorithmOptions.Builder> hashAlgorithmOptions)The hash algorithm options that are available for a code-signing job.SigningConfiguration.BuilderhashAlgorithmOptions(HashAlgorithmOptions hashAlgorithmOptions)The hash algorithm options that are available for a code-signing job.-
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
-
encryptionAlgorithmOptions
SigningConfiguration.Builder encryptionAlgorithmOptions(EncryptionAlgorithmOptions encryptionAlgorithmOptions)
The encryption algorithm options that are available for a code-signing job.
- Parameters:
encryptionAlgorithmOptions- The encryption algorithm options that are available for a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionAlgorithmOptions
default SigningConfiguration.Builder encryptionAlgorithmOptions(Consumer<EncryptionAlgorithmOptions.Builder> encryptionAlgorithmOptions)
The encryption algorithm options that are available for a code-signing job.
This is a convenience method that creates an instance of theEncryptionAlgorithmOptions.Builderavoiding the need to create one manually viaEncryptionAlgorithmOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryptionAlgorithmOptions(EncryptionAlgorithmOptions).- Parameters:
encryptionAlgorithmOptions- a consumer that will call methods onEncryptionAlgorithmOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryptionAlgorithmOptions(EncryptionAlgorithmOptions)
-
hashAlgorithmOptions
SigningConfiguration.Builder hashAlgorithmOptions(HashAlgorithmOptions hashAlgorithmOptions)
The hash algorithm options that are available for a code-signing job.
- Parameters:
hashAlgorithmOptions- The hash algorithm options that are available for a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hashAlgorithmOptions
default SigningConfiguration.Builder hashAlgorithmOptions(Consumer<HashAlgorithmOptions.Builder> hashAlgorithmOptions)
The hash algorithm options that are available for a code-signing job.
This is a convenience method that creates an instance of theHashAlgorithmOptions.Builderavoiding the need to create one manually viaHashAlgorithmOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohashAlgorithmOptions(HashAlgorithmOptions).- Parameters:
hashAlgorithmOptions- a consumer that will call methods onHashAlgorithmOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
hashAlgorithmOptions(HashAlgorithmOptions)
-
-