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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kms/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.

Returns:

  • (String)


6247
6248
6249
6250
6251
6252
6253
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 6247

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)


6247
6248
6249
6250
6251
6252
6253
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 6247

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)


6247
6248
6249
6250
6251
6252
6253
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 6247

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