Interface HashAlgorithmOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HashAlgorithmOptions.Builder,HashAlgorithmOptions>,SdkBuilder<HashAlgorithmOptions.Builder,HashAlgorithmOptions>,SdkPojo
- Enclosing class:
- HashAlgorithmOptions
public static interface HashAlgorithmOptions.Builder extends SdkPojo, CopyableBuilder<HashAlgorithmOptions.Builder,HashAlgorithmOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HashAlgorithmOptions.BuilderallowedValues(Collection<HashAlgorithm> allowedValues)The set of accepted hash algorithms allowed in a code-signing job.HashAlgorithmOptions.BuilderallowedValues(HashAlgorithm... allowedValues)The set of accepted hash algorithms allowed in a code-signing job.HashAlgorithmOptions.BuilderallowedValuesWithStrings(String... allowedValues)The set of accepted hash algorithms allowed in a code-signing job.HashAlgorithmOptions.BuilderallowedValuesWithStrings(Collection<String> allowedValues)The set of accepted hash algorithms allowed in a code-signing job.HashAlgorithmOptions.BuilderdefaultValue(String defaultValue)The default hash algorithm that is used in a code-signing job.HashAlgorithmOptions.BuilderdefaultValue(HashAlgorithm defaultValue)The default hash algorithm that is used in 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
-
allowedValuesWithStrings
HashAlgorithmOptions.Builder allowedValuesWithStrings(Collection<String> allowedValues)
The set of accepted hash algorithms allowed in a code-signing job.
- Parameters:
allowedValues- The set of accepted hash algorithms allowed in a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValuesWithStrings
HashAlgorithmOptions.Builder allowedValuesWithStrings(String... allowedValues)
The set of accepted hash algorithms allowed in a code-signing job.
- Parameters:
allowedValues- The set of accepted hash algorithms allowed in a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValues
HashAlgorithmOptions.Builder allowedValues(Collection<HashAlgorithm> allowedValues)
The set of accepted hash algorithms allowed in a code-signing job.
- Parameters:
allowedValues- The set of accepted hash algorithms allowed in a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValues
HashAlgorithmOptions.Builder allowedValues(HashAlgorithm... allowedValues)
The set of accepted hash algorithms allowed in a code-signing job.
- Parameters:
allowedValues- The set of accepted hash algorithms allowed in a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
HashAlgorithmOptions.Builder defaultValue(String defaultValue)
The default hash algorithm that is used in a code-signing job.
- Parameters:
defaultValue- The default hash algorithm that is used in a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
HashAlgorithm,HashAlgorithm
-
defaultValue
HashAlgorithmOptions.Builder defaultValue(HashAlgorithm defaultValue)
The default hash algorithm that is used in a code-signing job.
- Parameters:
defaultValue- The default hash algorithm that is used in a code-signing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
HashAlgorithm,HashAlgorithm
-
-