Interface PublicKey.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PublicKey.Builder,PublicKey>,SdkBuilder<PublicKey.Builder,PublicKey>,SdkPojo
- Enclosing class:
- PublicKey
public static interface PublicKey.Builder extends SdkPojo, CopyableBuilder<PublicKey.Builder,PublicKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PublicKey.Builderfingerprint(String fingerprint)The fingerprint of the public key.PublicKey.BuildervalidityEndTime(Instant validityEndTime)The ending time of validity of the public key.PublicKey.BuildervalidityStartTime(Instant validityStartTime)The starting time of validity of the public key.PublicKey.Buildervalue(SdkBytes value)The DER encoded public key value in PKCS#1 format.-
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
-
value
PublicKey.Builder value(SdkBytes value)
The DER encoded public key value in PKCS#1 format.
- Parameters:
value- The DER encoded public key value in PKCS#1 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validityStartTime
PublicKey.Builder validityStartTime(Instant validityStartTime)
The starting time of validity of the public key.
- Parameters:
validityStartTime- The starting time of validity of the public key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validityEndTime
PublicKey.Builder validityEndTime(Instant validityEndTime)
The ending time of validity of the public key.
- Parameters:
validityEndTime- The ending time of validity of the public key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fingerprint
PublicKey.Builder fingerprint(String fingerprint)
The fingerprint of the public key.
- Parameters:
fingerprint- The fingerprint of the public key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-