Class: Aws::CodeCommit::Types::SourceFileSpecifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::SourceFileSpecifier
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Information about a source file that is part of changes made in a commit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_path ⇒ String
The full path to the file, including the name of the file.
-
#is_move ⇒ Boolean
Whether to remove the source file from the parent commit.
Instance Attribute Details
#file_path ⇒ String
The full path to the file, including the name of the file.
6730 6731 6732 6733 6734 6735 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6730 class SourceFileSpecifier < Struct.new( :file_path, :is_move) SENSITIVE = [] include Aws::Structure end |
#is_move ⇒ Boolean
Whether to remove the source file from the parent commit.
6730 6731 6732 6733 6734 6735 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6730 class SourceFileSpecifier < Struct.new( :file_path, :is_move) SENSITIVE = [] include Aws::Structure end |