Class: Aws::KMS::Types::VerifyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::VerifyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
The Amazon Resource Name ([key ARN]) of the asymmetric KMS key that was used to verify the signature.
-
#signature_valid ⇒ Boolean
A Boolean value that indicates whether the signature was verified.
-
#signing_algorithm ⇒ String
The signing algorithm that was used to verify the signature.
Instance Attribute Details
#key_id ⇒ String
The Amazon Resource Name ([key ARN]) of the asymmetric KMS key that was used to verify the signature.
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
6670 6671 6672 6673 6674 6675 6676 |
# File 'lib/aws-sdk-kms/types.rb', line 6670 class VerifyResponse < Struct.new( :key_id, :signature_valid, :signing_algorithm) SENSITIVE = [] include Aws::Structure end |
#signature_valid ⇒ Boolean
A Boolean value that indicates whether the signature was verified. A value of ‘True` indicates that the `Signature` was produced by signing the `Message` with the specified `KeyID` and `SigningAlgorithm.` If the signature is not verified, the `Verify` operation fails with a `KMSInvalidSignatureException` exception.
6670 6671 6672 6673 6674 6675 6676 |
# File 'lib/aws-sdk-kms/types.rb', line 6670 class VerifyResponse < Struct.new( :key_id, :signature_valid, :signing_algorithm) SENSITIVE = [] include Aws::Structure end |
#signing_algorithm ⇒ String
The signing algorithm that was used to verify the signature.
6670 6671 6672 6673 6674 6675 6676 |
# File 'lib/aws-sdk-kms/types.rb', line 6670 class VerifyResponse < Struct.new( :key_id, :signature_valid, :signing_algorithm) SENSITIVE = [] include Aws::Structure end |