Class: Aws::SecurityAgent::Types::DiffSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::DiffSource
- Defined in:
- gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb
Overview
Note:
DiffSource is a union - when making an API calls you must set exactly one of the members.
Source of the diff for a differential code scan.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_uri ⇒ String
S3 URI pointing to a unified diff file.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_uri ⇒ String
S3 URI pointing to a unified diff file. The file must be in standard unified diff format and stored in an S3 bucket connected to your Agent Space.
3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3661 class DiffSource < Struct.new( :s3_uri, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Uri < DiffSource; end class Unknown < DiffSource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3661 3662 3663 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3661 def unknown @unknown end |