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