Class: Aws::CodeCommit::Types::ReplaceContentEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::ReplaceContentEntry
- Defined in:
- gems/aws-sdk-codecommit/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.
6198 6199 6200 6201 6202 6203 6204 6205 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6198 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.
6198 6199 6200 6201 6202 6203 6204 6205 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6198 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.
6198 6199 6200 6201 6202 6203 6204 6205 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6198 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.
6198 6199 6200 6201 6202 6203 6204 6205 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6198 class ReplaceContentEntry < Struct.new( :file_path, :replacement_type, :content, :file_mode) SENSITIVE = [] include Aws::Structure end |