Interface PrivateKeyFlagsV4.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PrivateKeyFlagsV4.Builder,PrivateKeyFlagsV4>,SdkBuilder<PrivateKeyFlagsV4.Builder,PrivateKeyFlagsV4>,SdkPojo
- Enclosing class:
- PrivateKeyFlagsV4
public static interface PrivateKeyFlagsV4.Builder extends SdkPojo, CopyableBuilder<PrivateKeyFlagsV4.Builder,PrivateKeyFlagsV4>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrivateKeyFlagsV4.BuilderclientVersion(String clientVersion)Defines the minimum client compatibility.PrivateKeyFlagsV4.BuilderclientVersion(ClientCompatibilityV4 clientVersion)Defines the minimum client compatibility.PrivateKeyFlagsV4.BuilderexportableKey(Boolean exportableKey)Allows the private key to be exported.PrivateKeyFlagsV4.BuilderrequireAlternateSignatureAlgorithm(Boolean requireAlternateSignatureAlgorithm)Requires the PKCS #1 v2.1 signature format for certificates.PrivateKeyFlagsV4.BuilderrequireSameKeyRenewal(Boolean requireSameKeyRenewal)Renew certificate using the same private key.PrivateKeyFlagsV4.BuilderstrongKeyProtectionRequired(Boolean strongKeyProtectionRequired)Require user input when using the private key for enrollment.PrivateKeyFlagsV4.BuilderuseLegacyProvider(Boolean useLegacyProvider)Specifies the cryptographic service provider category used to generate private keys.-
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
-
clientVersion
PrivateKeyFlagsV4.Builder clientVersion(String clientVersion)
Defines the minimum client compatibility.
- Parameters:
clientVersion- Defines the minimum client compatibility.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientCompatibilityV4,ClientCompatibilityV4
-
clientVersion
PrivateKeyFlagsV4.Builder clientVersion(ClientCompatibilityV4 clientVersion)
Defines the minimum client compatibility.
- Parameters:
clientVersion- Defines the minimum client compatibility.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientCompatibilityV4,ClientCompatibilityV4
-
exportableKey
PrivateKeyFlagsV4.Builder exportableKey(Boolean exportableKey)
Allows the private key to be exported.
- Parameters:
exportableKey- Allows the private key to be exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requireAlternateSignatureAlgorithm
PrivateKeyFlagsV4.Builder requireAlternateSignatureAlgorithm(Boolean requireAlternateSignatureAlgorithm)
Requires the PKCS #1 v2.1 signature format for certificates. You should verify that your CA, objects, and applications can accept this signature format.
- Parameters:
requireAlternateSignatureAlgorithm- Requires the PKCS #1 v2.1 signature format for certificates. You should verify that your CA, objects, and applications can accept this signature format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requireSameKeyRenewal
PrivateKeyFlagsV4.Builder requireSameKeyRenewal(Boolean requireSameKeyRenewal)
Renew certificate using the same private key.
- Parameters:
requireSameKeyRenewal- Renew certificate using the same private key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strongKeyProtectionRequired
PrivateKeyFlagsV4.Builder strongKeyProtectionRequired(Boolean strongKeyProtectionRequired)
Require user input when using the private key for enrollment.
- Parameters:
strongKeyProtectionRequired- Require user input when using the private key for enrollment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
useLegacyProvider
PrivateKeyFlagsV4.Builder useLegacyProvider(Boolean useLegacyProvider)
Specifies the cryptographic service provider category used to generate private keys. Set to TRUE to use Legacy Cryptographic Service Providers and FALSE to use Key Storage Providers.
- Parameters:
useLegacyProvider- Specifies the cryptographic service provider category used to generate private keys. Set to TRUE to use Legacy Cryptographic Service Providers and FALSE to use Key Storage Providers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-