Class: Aws::CodeCommit::Types::Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Location
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about the location of a change or comment in the comparison between two commits or a pull request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_path ⇒ String
The name of the file being compared, including its extension and subdirectory, if any.
-
#file_position ⇒ Integer
The position of a change in a compared file, in line number format.
-
#relative_file_version ⇒ String
In a comparison of commits or a pull request, whether the change is in the before or after of that comparison.
Instance Attribute Details
#file_path ⇒ String
The name of the file being compared, including its extension and subdirectory, if any.
4476 4477 4478 4479 4480 4481 4482 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4476 class Location < Struct.new( :file_path, :file_position, :relative_file_version) SENSITIVE = [] include Aws::Structure end |
#file_position ⇒ Integer
The position of a change in a compared file, in line number format.
4476 4477 4478 4479 4480 4481 4482 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4476 class Location < Struct.new( :file_path, :file_position, :relative_file_version) SENSITIVE = [] include Aws::Structure end |
#relative_file_version ⇒ String
In a comparison of commits or a pull request, whether the change is in the before or after of that comparison.
4476 4477 4478 4479 4480 4481 4482 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4476 class Location < Struct.new( :file_path, :file_position, :relative_file_version) SENSITIVE = [] include Aws::Structure end |