Class: Aws::CodeCommit::Types::Folder
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Folder
- Defined in:
- gems/aws-sdk-codecommit/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.
2633 2634 2635 2636 2637 2638 2639 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2633 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.
2633 2634 2635 2636 2637 2638 2639 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2633 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.
2633 2634 2635 2636 2637 2638 2639 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2633 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |