Class: Aws::CodeCommit::Types::ReplaceContentEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::ReplaceContentEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about a replacement content entry in the conflict of a merge or pull request operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content ⇒ String
The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.
-
#file_mode ⇒ String
The file mode to apply during conflict resoltion.
-
#file_path ⇒ String
The path of the conflicting file.
-
#replacement_type ⇒ String
The replacement type to use when determining how to resolve the conflict.
Instance Attribute Details
#content ⇒ String
The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.
6196 6197 6198 6199 6200 6201 6202 6203 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6196 class ReplaceContentEntry < Struct.new( :file_path, :replacement_type, :content, :file_mode) SENSITIVE = [] include Aws::Structure end |
#file_mode ⇒ String
The file mode to apply during conflict resoltion.
6196 6197 6198 6199 6200 6201 6202 6203 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6196 class ReplaceContentEntry < Struct.new( :file_path, :replacement_type, :content, :file_mode) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The path of the conflicting file.
6196 6197 6198 6199 6200 6201 6202 6203 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6196 class ReplaceContentEntry < Struct.new( :file_path, :replacement_type, :content, :file_mode) SENSITIVE = [] include Aws::Structure end |
#replacement_type ⇒ String
The replacement type to use when determining how to resolve the conflict.
6196 6197 6198 6199 6200 6201 6202 6203 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6196 class ReplaceContentEntry < Struct.new( :file_path, :replacement_type, :content, :file_mode) SENSITIVE = [] include Aws::Structure end |