List of usage examples for com.amazonaws.services.ec2.model KeyPair setKeyFingerprint
public void setKeyFingerprint(String keyFingerprint)
The SHA-1 digest of the DER encoded private key.
From source file:jp.primecloud.auto.aws.typica.converter.KeyPairConverter.java
License:Open Source License
@Override protected KeyPair convertObject(KeyPairInfo from) { KeyPair to = new KeyPair(); to.setKeyName(from.getKeyName());// w ww. java 2s.co m to.setKeyMaterial(from.getKeyMaterial()); to.setKeyFingerprint(from.getKeyFingerprint()); return to; }