Class: Aws::AuditManager::Types::UpdateAssessmentStatusRequest

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

Overview

Note:

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

{
  assessment_id: "UUID", # required
  status: "ACTIVE", # required, accepts ACTIVE, INACTIVE
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#assessment_idString

The unique identifier for the assessment.

Returns:

  • (String)


5100
5101
5102
5103
5104
5105
# File 'lib/aws-sdk-auditmanager/types.rb', line 5100

class UpdateAssessmentStatusRequest < Struct.new(
  :assessment_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The current status of the assessment.

Returns:

  • (String)


5100
5101
5102
5103
5104
5105
# File 'lib/aws-sdk-auditmanager/types.rb', line 5100

class UpdateAssessmentStatusRequest < Struct.new(
  :assessment_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end