AWSKMSVerifyResponse
Objective-C
@interface AWSKMSVerifyResponse
Swift
class AWSKMSVerifyResponse
-
The Amazon Resource Name (key ARN) of the asymmetric KMS key that was used to verify the signature.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyId;
Swift
var keyId: String? { get set }
-
A Boolean value that indicates whether the signature was verified. A value of
True
indicates that theSignature
was produced by signing theMessage
with the specifiedKeyID
andSigningAlgorithm.
If the signature is not verified, theVerify
operation fails with aKMSInvalidSignatureException
exception.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable signatureValid;
Swift
var signatureValid: NSNumber? { get set }
-
The signing algorithm that was used to verify the signature.
Declaration
Objective-C
@property (nonatomic) AWSKMSSigningAlgorithmSpec signingAlgorithm;
Swift
var signingAlgorithm: AWSKMSSigningAlgorithmSpec { get set }