Class: Aws::CodeCommit::Types::SourceFileSpecifier

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#file_pathString

The full path to the file, including the name of the file.

Returns:

  • (String)


6545
6546
6547
6548
6549
6550
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6545

class SourceFileSpecifier < Struct.new(
  :file_path,
  :is_move)
  SENSITIVE = []
  include Aws::Structure
end

#is_moveBoolean

Whether to remove the source file from the parent commit.

Returns:

  • (Boolean)


6545
6546
6547
6548
6549
6550
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6545

class SourceFileSpecifier < Struct.new(
  :file_path,
  :is_move)
  SENSITIVE = []
  include Aws::Structure
end