Class: Aws::KMS::Types::VerifyResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kms/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_idString

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

Returns:

  • (String)


6464
6465
6466
6467
6468
6469
6470
# File 'lib/aws-sdk-kms/types.rb', line 6464

class VerifyResponse < Struct.new(
  :key_id,
  :signature_valid,
  :signing_algorithm)
  SENSITIVE = []
  include Aws::Structure
end

#signature_validBoolean

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.

Returns:

  • (Boolean)


6464
6465
6466
6467
6468
6469
6470
# File 'lib/aws-sdk-kms/types.rb', line 6464

class VerifyResponse < Struct.new(
  :key_id,
  :signature_valid,
  :signing_algorithm)
  SENSITIVE = []
  include Aws::Structure
end

#signing_algorithmString

The signing algorithm that was used to verify the signature.

Returns:

  • (String)


6464
6465
6466
6467
6468
6469
6470
# File 'lib/aws-sdk-kms/types.rb', line 6464

class VerifyResponse < Struct.new(
  :key_id,
  :signature_valid,
  :signing_algorithm)
  SENSITIVE = []
  include Aws::Structure
end