AWSEC2KeyPairInfo
Objective-C
@interface AWSEC2KeyPairInfo
Swift
class AWSEC2KeyPairInfo
Describes a key pair.
-
If you used CreateKeyPair to create the key pair, this is the SHA-1 digest of the DER encoded private key. If you used ImportKeyPair to provide AWS the public key, this is the MD5 public key fingerprint as specified in section 4 of RFC4716.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyFingerprint;
Swift
var keyFingerprint: String? { get set }
-
The name of the key pair.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyName;
Swift
var keyName: String? { get set }
-
The ID of the key pair.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyPairId;
Swift
var keyPairId: String? { get set }