Class: Aws::AuditManager::Types::ManualEvidence
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::ManualEvidence
- Includes:
- Structure
- Defined in:
- 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` ][1] API response.
[1]: docs.aws.amazon.com/audit-manager/latest/APIReference/API_GetEvidenceFileUploadUrl.html
3771 3772 3773 3774 3775 3776 3777 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 3771 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.
3771 3772 3773 3774 3775 3776 3777 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 3771 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.
3771 3772 3773 3774 3775 3776 3777 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 3771 class ManualEvidence < Struct.new( :s3_resource_path, :text_response, :evidence_file_name) SENSITIVE = [:text_response, :evidence_file_name] include Aws::Structure end |