Class: Aws::IoT::Types::PutVerificationStateOnViolationRequest

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

Overview

Note:

When making an API call, you may pass PutVerificationStateOnViolationRequest data as a hash:

{
  violation_id: "ViolationId", # required
  verification_state: "FALSE_POSITIVE", # required, accepts FALSE_POSITIVE, BENIGN_POSITIVE, TRUE_POSITIVE, UNKNOWN
  verification_state_description: "VerificationStateDescription",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#verification_stateString

The verification state of the violation.

Returns:

  • (String)


15242
15243
15244
15245
15246
15247
15248
# File 'lib/aws-sdk-iot/types.rb', line 15242

class PutVerificationStateOnViolationRequest < Struct.new(
  :violation_id,
  :verification_state,
  :verification_state_description)
  SENSITIVE = []
  include Aws::Structure
end

#verification_state_descriptionString

The description of the verification state of the violation (detect alarm).

Returns:

  • (String)


15242
15243
15244
15245
15246
15247
15248
# File 'lib/aws-sdk-iot/types.rb', line 15242

class PutVerificationStateOnViolationRequest < Struct.new(
  :violation_id,
  :verification_state,
  :verification_state_description)
  SENSITIVE = []
  include Aws::Structure
end

#violation_idString

The violation ID.

Returns:

  • (String)


15242
15243
15244
15245
15246
15247
15248
# File 'lib/aws-sdk-iot/types.rb', line 15242

class PutVerificationStateOnViolationRequest < Struct.new(
  :violation_id,
  :verification_state,
  :verification_state_description)
  SENSITIVE = []
  include Aws::Structure
end