Class: Aws::CodeCommit::Types::FileMetadata

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#absolute_pathString

The full path to the file to be added or updated, including the name of the file.

Returns:

  • (String)


2488
2489
2490
2491
2492
2493
2494
# File 'lib/aws-sdk-codecommit/types.rb', line 2488

class FileMetadata < Struct.new(
  :absolute_path,
  :blob_id,
  :file_mode)
  SENSITIVE = []
  include Aws::Structure
end

#blob_idString

The blob ID that contains the file information.

Returns:

  • (String)


2488
2489
2490
2491
2492
2493
2494
# File 'lib/aws-sdk-codecommit/types.rb', line 2488

class FileMetadata < Struct.new(
  :absolute_path,
  :blob_id,
  :file_mode)
  SENSITIVE = []
  include Aws::Structure
end

#file_modeString

The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.

Returns:

  • (String)


2488
2489
2490
2491
2492
2493
2494
# File 'lib/aws-sdk-codecommit/types.rb', line 2488

class FileMetadata < Struct.new(
  :absolute_path,
  :blob_id,
  :file_mode)
  SENSITIVE = []
  include Aws::Structure
end