Class: Aws::CodeCommit::Types::Folder
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Folder
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a folder in a repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#absolute_path ⇒ String
The fully qualified path of the folder in the repository.
-
#relative_path ⇒ String
The relative path of the specified folder from the folder where the query originated.
-
#tree_id ⇒ String
The full SHA-1 pointer of the tree information for the commit that contains the folder.
Instance Attribute Details
#absolute_path ⇒ String
The fully qualified path of the folder in the repository.
2631 2632 2633 2634 2635 2636 2637 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2631 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |
#relative_path ⇒ String
The relative path of the specified folder from the folder where the query originated.
2631 2632 2633 2634 2635 2636 2637 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2631 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |
#tree_id ⇒ String
The full SHA-1 pointer of the tree information for the commit that contains the folder.
2631 2632 2633 2634 2635 2636 2637 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2631 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |