Class: Aws::AuditManager::Types::AssessmentReportsDestination

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 AssessmentReportsDestination data as a hash:

{
  destination_type: "S3", # accepts S3
  destination: "S3Url",
}

The location where Audit Manager saves assessment reports for the given assessment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destinationString

The destination of the assessment report.

Returns:

  • (String)


790
791
792
793
794
795
# File 'lib/aws-sdk-auditmanager/types.rb', line 790

class AssessmentReportsDestination < Struct.new(
  :destination_type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end

#destination_typeString

The destination type, such as Amazon S3.

Returns:

  • (String)


790
791
792
793
794
795
# File 'lib/aws-sdk-auditmanager/types.rb', line 790

class AssessmentReportsDestination < Struct.new(
  :destination_type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end