Interface KeyPairInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeyPairInfo.Builder,KeyPairInfo>,SdkBuilder<KeyPairInfo.Builder,KeyPairInfo>,SdkPojo
- Enclosing class:
- KeyPairInfo
@Mutable @NotThreadSafe public static interface KeyPairInfo.Builder extends SdkPojo, CopyableBuilder<KeyPairInfo.Builder,KeyPairInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyPairInfo.BuildercreateTime(Instant createTime)If you used Amazon EC2 to create the key pair, this is the date and time when the key was created, in ISO 8601 date-time format, in the UTC time zone.KeyPairInfo.BuilderkeyFingerprint(String keyFingerprint)If you used CreateKeyPair to create the key pair:KeyPairInfo.BuilderkeyName(String keyName)The name of the key pair.KeyPairInfo.BuilderkeyPairId(String keyPairId)The ID of the key pair.KeyPairInfo.BuilderkeyType(String keyType)The type of key pair.KeyPairInfo.BuilderkeyType(KeyType keyType)The type of key pair.KeyPairInfo.BuilderpublicKey(String publicKey)The public key material.KeyPairInfo.Buildertags(Collection<Tag> tags)Any tags applied to the key pair.KeyPairInfo.Buildertags(Consumer<Tag.Builder>... tags)Any tags applied to the key pair.KeyPairInfo.Buildertags(Tag... tags)Any tags applied to the key pair.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
keyPairId
KeyPairInfo.Builder keyPairId(String keyPairId)
The ID of the key pair.
- Parameters:
keyPairId- The ID of the key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyType
KeyPairInfo.Builder keyType(String keyType)
The type of key pair.
-
keyType
KeyPairInfo.Builder keyType(KeyType keyType)
The type of key pair.
-
tags
KeyPairInfo.Builder tags(Collection<Tag> tags)
Any tags applied to the key pair.
- Parameters:
tags- Any tags applied to the key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
KeyPairInfo.Builder tags(Tag... tags)
Any tags applied to the key pair.
- Parameters:
tags- Any tags applied to the key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
KeyPairInfo.Builder tags(Consumer<Tag.Builder>... tags)
Any tags applied to the key pair.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
publicKey
KeyPairInfo.Builder publicKey(String publicKey)
The public key material.
- Parameters:
publicKey- The public key material.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createTime
KeyPairInfo.Builder createTime(Instant createTime)
If you used Amazon EC2 to create the key pair, this is the date and time when the key was created, in ISO 8601 date-time format, in the UTC time zone.
If you imported an existing key pair to Amazon EC2, this is the date and time the key was imported, in ISO 8601 date-time format, in the UTC time zone.
- Parameters:
createTime- If you used Amazon EC2 to create the key pair, this is the date and time when the key was created, in ISO 8601 date-time format, in the UTC time zone.If you imported an existing key pair to Amazon EC2, this is the date and time the key was imported, in ISO 8601 date-time format, in the UTC time zone.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyName
KeyPairInfo.Builder keyName(String keyName)
The name of the key pair.
- Parameters:
keyName- The name of the key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyFingerprint
KeyPairInfo.Builder keyFingerprint(String keyFingerprint)
If you used CreateKeyPair to create the key pair:
-
For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
If you used ImportKeyPair to provide Amazon Web Services the public key:
-
For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC4716.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
- Parameters:
keyFingerprint- If you used CreateKeyPair to create the key pair:-
For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
If you used ImportKeyPair to provide Amazon Web Services the public key:
-
For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC4716.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-