Class: Aws::CodeCommit::Types::FileMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::FileMetadata
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
A file to be added, updated, or deleted as part of a commit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#absolute_path ⇒ String
The full path to the file to be added or updated, including the name of the file.
-
#blob_id ⇒ String
The blob ID that contains the file information.
-
#file_mode ⇒ String
The extrapolated file mode permissions for the file.
Instance Attribute Details
#absolute_path ⇒ String
The full path to the file to be added or updated, including the name of the file.
2488 2489 2490 2491 2492 2493 2494 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2488 class FileMetadata < Struct.new( :absolute_path, :blob_id, :file_mode) SENSITIVE = [] include Aws::Structure end |
#blob_id ⇒ String
The blob ID that contains the file information.
2488 2489 2490 2491 2492 2493 2494 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2488 class FileMetadata < Struct.new( :absolute_path, :blob_id, :file_mode) SENSITIVE = [] include Aws::Structure end |
#file_mode ⇒ String
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
2488 2489 2490 2491 2492 2493 2494 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2488 class FileMetadata < Struct.new( :absolute_path, :blob_id, :file_mode) SENSITIVE = [] include Aws::Structure end |