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 in which AWS 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)


698
699
700
701
702
703
# File 'lib/aws-sdk-auditmanager/types.rb', line 698

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

#destination_typeString

The destination type, such as Amazon S3.

Returns:

  • (String)


698
699
700
701
702
703
# File 'lib/aws-sdk-auditmanager/types.rb', line 698

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