Class: Aws::CodeCommit::Types::Difference

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codecommit/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

Instance Attribute Details

#after_blobTypes::BlobMetadata

Information about an afterBlob data type object, including the ID, the file mode permission code, and the path.

Returns:



2249
2250
2251
2252
2253
2254
2255
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2249

class Difference < Struct.new(
  :before_blob,
  :after_blob,
  :change_type)
  SENSITIVE = []
  include Aws::Structure
end

#before_blobTypes::BlobMetadata

Information about a beforeBlob data type object, including the ID, the file mode permission code, and the path.

Returns:



2249
2250
2251
2252
2253
2254
2255
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2249

class Difference < Struct.new(
  :before_blob,
  :after_blob,
  :change_type)
  SENSITIVE = []
  include Aws::Structure
end

#change_typeString

Whether the change type of the difference is an addition (A), deletion (D), or modification (M).

Returns:

  • (String)


2249
2250
2251
2252
2253
2254
2255
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2249

class Difference < Struct.new(
  :before_blob,
  :after_blob,
  :change_type)
  SENSITIVE = []
  include Aws::Structure
end