Class: Aws::CodeCommit::Types::ObjectTypes
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::ObjectTypes
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about the type of an object in a merge operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base ⇒ String
The type of the object in the base commit of the merge.
-
#destination ⇒ String
The type of the object in the destination branch.
-
#source ⇒ String
The type of the object in the source branch.
Instance Attribute Details
#base ⇒ String
The type of the object in the base commit of the merge.
5186 5187 5188 5189 5190 5191 5192 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5186 class ObjectTypes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |
#destination ⇒ String
The type of the object in the destination branch.
5186 5187 5188 5189 5190 5191 5192 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5186 class ObjectTypes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The type of the object in the source branch.
5186 5187 5188 5189 5190 5191 5192 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5186 class ObjectTypes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |