Class: Aws::AuditManager::Types::AssessmentReportsDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::AssessmentReportsDestination
- Defined in:
- gems/aws-sdk-auditmanager/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
-
#destination ⇒ String
The destination of the assessment report.
-
#destination_type ⇒ String
The destination type, such as Amazon S3.
Instance Attribute Details
#destination ⇒ String
The destination of the assessment report.
791 792 793 794 795 796 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 791 class AssessmentReportsDestination < Struct.new( :destination_type, :destination) SENSITIVE = [] include Aws::Structure end |
#destination_type ⇒ String
The destination type, such as Amazon S3.
791 792 793 794 795 796 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 791 class AssessmentReportsDestination < Struct.new( :destination_type, :destination) SENSITIVE = [] include Aws::Structure end |