Class: Aws::CodeCommit::Types::PutFileEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::PutFileEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about a file added or updated as part of a commit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_content ⇒ String
The content of the file, if a source file is not specified.
-
#file_mode ⇒ String
The extrapolated file mode permissions for the file.
-
#file_path ⇒ String
The full path to the file in the repository, including the name of the file.
-
#source_file ⇒ Types::SourceFileSpecifier
The name and full path of the file that contains the changes you want to make as part of the commit, if you are not providing the file content directly.
Instance Attribute Details
#file_content ⇒ String
The content of the file, if a source file is not specified.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5942 class PutFileEntry < Struct.new( :file_path, :file_mode, :file_content, :source_file) SENSITIVE = [] include Aws::Structure end |
#file_mode ⇒ String
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5942 class PutFileEntry < Struct.new( :file_path, :file_mode, :file_content, :source_file) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The full path to the file in the repository, including the name of the file.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5942 class PutFileEntry < Struct.new( :file_path, :file_mode, :file_content, :source_file) SENSITIVE = [] include Aws::Structure end |
#source_file ⇒ Types::SourceFileSpecifier
The name and full path of the file that contains the changes you want to make as part of the commit, if you are not providing the file content directly.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5942 class PutFileEntry < Struct.new( :file_path, :file_mode, :file_content, :source_file) SENSITIVE = [] include Aws::Structure end |