Interface SshPublicKey.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SshPublicKey.Builder,SshPublicKey>,SdkBuilder<SshPublicKey.Builder,SshPublicKey>,SdkPojo
- Enclosing class:
- SshPublicKey
public static interface SshPublicKey.Builder extends SdkPojo, CopyableBuilder<SshPublicKey.Builder,SshPublicKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SshPublicKey.BuilderdateImported(Instant dateImported)Specifies the date that the public key was added to the Transfer Family user.SshPublicKey.BuildersshPublicKeyBody(String sshPublicKeyBody)Specifies the content of the SSH public key as specified by thePublicKeyId.SshPublicKey.BuildersshPublicKeyId(String sshPublicKeyId)Specifies theSshPublicKeyIdparameter contains the identifier of the public key.-
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
-
dateImported
SshPublicKey.Builder dateImported(Instant dateImported)
Specifies the date that the public key was added to the Transfer Family user.
- Parameters:
dateImported- Specifies the date that the public key was added to the Transfer Family user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sshPublicKeyBody
SshPublicKey.Builder sshPublicKeyBody(String sshPublicKeyBody)
Specifies the content of the SSH public key as specified by the
PublicKeyId.Transfer Family accepts RSA, ECDSA, and ED25519 keys.
- Parameters:
sshPublicKeyBody- Specifies the content of the SSH public key as specified by thePublicKeyId.Transfer Family accepts RSA, ECDSA, and ED25519 keys.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sshPublicKeyId
SshPublicKey.Builder sshPublicKeyId(String sshPublicKeyId)
Specifies the
SshPublicKeyIdparameter contains the identifier of the public key.- Parameters:
sshPublicKeyId- Specifies theSshPublicKeyIdparameter contains the identifier of the public key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-