Class: Aws::CodeCommit::Types::Difference
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Difference
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a set of differences for a commit specifier.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#after_blob ⇒ Types::BlobMetadata
Information about an ‘afterBlob` data type object, including the ID, the file mode permission code, and the path.
-
#before_blob ⇒ Types::BlobMetadata
Information about a ‘beforeBlob` data type object, including the ID, the file mode permission code, and the path.
-
#change_type ⇒ String
Whether the change type of the difference is an addition (A), deletion (D), or modification (M).
Instance Attribute Details
#after_blob ⇒ Types::BlobMetadata
Information about an ‘afterBlob` data type object, including the ID, the file mode permission code, and the path.
2247 2248 2249 2250 2251 2252 2253 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2247 class Difference < Struct.new( :before_blob, :after_blob, :change_type) SENSITIVE = [] include Aws::Structure end |
#before_blob ⇒ Types::BlobMetadata
Information about a ‘beforeBlob` data type object, including the ID, the file mode permission code, and the path.
2247 2248 2249 2250 2251 2252 2253 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2247 class Difference < Struct.new( :before_blob, :after_blob, :change_type) SENSITIVE = [] include Aws::Structure end |
#change_type ⇒ String
Whether the change type of the difference is an addition (A), deletion (D), or modification (M).
2247 2248 2249 2250 2251 2252 2253 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2247 class Difference < Struct.new( :before_blob, :after_blob, :change_type) SENSITIVE = [] include Aws::Structure end |