Class: Aws::AuditManager::Types::ManualEvidence
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::ManualEvidence
- Defined in:
- gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb
Overview
Evidence that's manually added to a control in Audit Manager.
manualEvidence
can be one of the following: evidenceFileName
,
s3ResourcePath
, or textResponse
.
Constant Summary collapse
- SENSITIVE =
[:text_response, :evidence_file_name]
Instance Attribute Summary collapse
-
#evidence_file_name ⇒ String
The name of the file that's uploaded as manual evidence.
-
#s3_resource_path ⇒ String
The S3 URL of the object that's imported as manual evidence.
-
#text_response ⇒ String
The plain text response that's entered and saved as manual evidence.
Instance Attribute Details
#evidence_file_name ⇒ String
The name of the file that's uploaded as manual evidence. This name
is populated using the evidenceFileName
value from the
GetEvidenceFileUploadUrl
API response.
3867 3868 3869 3870 3871 3872 3873 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 3867 class ManualEvidence < Struct.new( :s3_resource_path, :text_response, :evidence_file_name) SENSITIVE = [:text_response, :evidence_file_name] include Aws::Structure end |
#s3_resource_path ⇒ String
The S3 URL of the object that's imported as manual evidence.
3867 3868 3869 3870 3871 3872 3873 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 3867 class ManualEvidence < Struct.new( :s3_resource_path, :text_response, :evidence_file_name) SENSITIVE = [:text_response, :evidence_file_name] include Aws::Structure end |
#text_response ⇒ String
The plain text response that's entered and saved as manual evidence.
3867 3868 3869 3870 3871 3872 3873 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 3867 class ManualEvidence < Struct.new( :s3_resource_path, :text_response, :evidence_file_name) SENSITIVE = [:text_response, :evidence_file_name] include Aws::Structure end |