Class: Aws::CodeCommit::Types::MergeOperations
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::MergeOperations
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about the file operation conflicts in a merge operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ String
The operation on a file in the destination of a merge or pull request.
-
#source ⇒ String
The operation (add, modify, or delete) on a file in the source of a merge or pull request.
Instance Attribute Details
#destination ⇒ String
The operation on a file in the destination of a merge or pull request.
4903 4904 4905 4906 4907 4908 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4903 class MergeOperations < Struct.new( :source, :destination) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The operation (add, modify, or delete) on a file in the source of a merge or pull request.
4903 4904 4905 4906 4907 4908 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4903 class MergeOperations < Struct.new( :source, :destination) SENSITIVE = [] include Aws::Structure end |