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
Note:
When making an API call, you may pass SourceFileSpecifier data as a hash:
{
file_path: "Path", # required
is_move: false,
}
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.
7212 7213 7214 7215 7216 7217 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7212 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.
7212 7213 7214 7215 7216 7217 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7212 class SourceFileSpecifier < Struct.new( :file_path, :is_move) SENSITIVE = [] include Aws::Structure end |